remaster/src/func/filesystem_get_type

16 lines
314 B
Plaintext
Raw Normal View History

#!/bin/bash
#remaster lib
2018-05-07 00:56:46 +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]}
}
2018-05-10 15:13:19 +00:00
2018-05-10 22:04:02 +00:00
#this func is standalone executable
2018-05-10 15:13:19 +00:00
[ -n "$1" ] && {
2018-05-10 22:04:02 +00:00
filesystem_get_type $@
2018-05-10 15:13:19 +00:00
}