mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 12:42:50 +00:00
6 lines
99 B
Bash
Executable File
6 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
# requires: coreutils
|
|
sz=$(cat $1)
|
|
sz=$(($sz))
|
|
echo "size-sum:" $(numfmt --to=iec $sz)
|