aboutsummaryrefslogtreecommitdiffstats
path: root/elchos/commands/list_downloads
diff options
context:
space:
mode:
Diffstat (limited to 'elchos/commands/list_downloads')
-rwxr-xr-xelchos/commands/list_downloads8
1 files changed, 0 insertions, 8 deletions
diff --git a/elchos/commands/list_downloads b/elchos/commands/list_downloads
deleted file mode 100755
index f53067d..0000000
--- a/elchos/commands/list_downloads
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-ncdc_user=hooker
-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 | grep -v '^$' | tail -n 1
-done