about summary refs log tree commit diff
path: root/fq.sh
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-08-05 14:55:09 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2015-08-05 14:55:44 +0200
commit774a8f2d098fa242c5bac528e51ca62fca0bd9a4 (patch)
tree4592e5979cb14cf38a666a990a76636297e5b95e /fq.sh
parenteb39f3029e54063170105c67128d2300f87a1e3b (diff)
downloadnq-774a8f2d098fa242c5bac528e51ca62fca0bd9a4.tar.gz
nq-774a8f2d098fa242c5bac528e51ca62fca0bd9a4.tar.xz
nq-774a8f2d098fa242c5bac528e51ca62fca0bd9a4.zip
rename fq to fq.sh
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