add-mon-tool show2cp

This commit is contained in:
6543 2019-03-05 21:15:49 +01:00
parent 6abd6b6646
commit 82ea7c6720
1 changed files with 17 additions and 0 deletions

17
show2cp Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash

function calc_kb() {
i=0
cat 2cp | cut -c 35- | while read line; do
kb=$(du "$line" | cut -f 1)
i=$((i+kb))
echo $i
done | tail -n1
}

kb=$(calc_kb)
mb=$((kb/1024))
gb=$((mb/1024))
tb=$((gb/1024))

echo "Noch Zu Kopieren: $kb Kb = $mb Mb = $gb Gb = $tb Tb"