You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
314 B
15 lines
314 B
#!/bin/bash |
|
#remaster lib |
|
[ -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]} |
|
} |
|
|
|
#this func is standalone executable |
|
[ -n "$1" ] && { |
|
filesystem_get_type $@ |
|
}
|
|
|