MV Func file_size()

This commit is contained in:
2019-05-11 23:43:30 +02:00
parent a3a49da9b9
commit 5d6f5ac760
3 changed files with 9 additions and 19 deletions

View File

@ -12,3 +12,12 @@ LIBVER=1.1
readonly globalconf="/etc/tt/global"
[ -z "$DEBUG" ] && readonly DEBUG=$FALSE
}
# file_size <path> -> (du -b)/1024 [Kb]
function file_size() {
if [ -f "$1" ]; then
echo $(($(du -b "$1" | cut -f 1)/1024))
else
echo 0
fi
}