From b178e7b9908fea2c5ab86b47e44ca9a53ca46b16 Mon Sep 17 00:00:00 2001 From: mxmehl Date: Wed, 17 Jun 2015 11:18:29 +0300 Subject: [PATCH] du was in kb, now counting bytes according to info text --- split-dl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/split-dl.sh b/split-dl.sh index 49497ac..17c925c 100755 --- a/split-dl.sh +++ b/split-dl.sh @@ -33,7 +33,7 @@ function compmd5 { } function getdu { - du $1 | awk -F" " '{ print $1 }' + du -b $1 | awk -F" " '{ print $1 }' } function compdu {