nsbin/torrent_handler/show_log_status.sh
Nico Schottelius df2daf524d init
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
2017-07-19 17:15:41 +02:00

5 lines
111 B
Bash
Executable file

for file in logs/*;
do
echo -n "${file}: ";
tail -n20 "$file" | grep "percent done:" | tail -n1;
done