diff options
-rw-r--r-- | backuper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backuper.sh b/backuper.sh index 6ef9a8e..684778e 100644 --- a/backuper.sh +++ b/backuper.sh @@ -53,7 +53,7 @@ title() { get_size() { FILE="$1" - du -h "$FILE" | awk '{ print $1 }' + du -h "$FILE" | cut -f1 } time_fmt() { |