about summary refs log tree commit diff
path: root/fq.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fq.sh')
-rw-r--r--fq.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/fq.sh b/fq.sh
new file mode 100644
index 0000000..99774fe
--- /dev/null
+++ b/fq.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+# fq - tail -F the queue outputs, quitting when the job finishes
+
+tailed=false
+for f in ${NQDIR:-.}/,*; do
+	if ! nq -t $f; then
+		tailed=true
+		printf '==> %s\n' "$f"
+		tail -F $f & p=$!
+		nq -w $f
+		kill $p
+	fi
+done
+
+if ! $tailed; then
+	cat $f
+fi