remaster/src/func/filesystem_get_type

11 lines
232 B
Plaintext
Raw Normal View History

#!/bin/bash
#remaster lib
2018-05-06 23:49:19 +00:00
[ -d "<LIBDIR>"] || { echo "LIBDIR not exist"; exit 1; }
#filesystem_get_type [dir]
#(String)-> ext4, ext2, btfs, fuse, ...
function filesystem_get_type() {
fs_aTemp=(`df -T "$1"`)
echo ${fs_aTemp[9]}
}