summaryrefslogtreecommitdiffstats
path: root/filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads
diff options
context:
space:
mode:
Diffstat (limited to 'filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads')
-rwxr-xr-xfilehooker/root-image/krebs/etc/Reaktor/commands/list_downloads2
1 files changed, 1 insertions, 1 deletions
diff --git a/filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads b/filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads
index cb1e07be..f53067d8 100755
--- a/filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads
+++ b/filehooker/root-image/krebs/etc/Reaktor/commands/list_downloads
@@ -4,5 +4,5 @@ count=$(sudo -u $ncdc_user /usr/bin/tmux list-windows -t dl 2>/dev/null| wc -l)
test $count -eq 0 && echo "no downloads running" && exit 0
for i in $(seq 0 $(($count-1)));do
- sudo -u $ncdc_user /usr/bin/tmux capture-pane -t dl:$i -p |head -1
+ sudo -u $ncdc_user /usr/bin/tmux capture-pane -t dl:$i -p | grep -v '^$' | tail -n 1
done