“Can you get cp to give a progress bar like wget?”
< zed0> can you get cp to give a progress bar like wget?
Damn right you can.
#!/bin/sh
cp_p()
{
set -e
strace -q -ewrite cp -- "${1}" "${2}" 2>&1 \
| awk '{
count += $NF
if (count % 10 == 0) {
percent = count / total_size * 100
printf "%3d%% [", percent
for (i=0;i<=percent;i++)
printf "="
printf ">"
for (i=percent;i<100;i++)
printf " "
printf "]\r”
}
}
END { print “” }’ total_size=$(stat -c ‘%s’ “${1}”) count=0
}
In action:
% cp_p /mnt/raid/pub/iso/debian/debian-2.2r4potato-i386-netinst.iso /dev/null
76% [===========================================> ]
About this entry
You are currently reading ““Can you get cp to give a progress bar like wget?””, an entry on Lamby's blog.
- Published:
- 24.01.08 / 1am
- Filed under:
- Hacks, Planet ALUG, Planet Debian, Planet UWCS, Planet WUGLUG
44 Comments
Jump to comment form | comments rss | trackback uri