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

@ -144,15 +144,6 @@ function db_query() {
echo $@ | mysql $args
}
# 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
}
case "$mode" in
"a") #in_add
md5_in_add