From 80a48d82b0b7568108382ecd28fc281e249ac547 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Fri, 31 Jul 2015 15:45:30 +0200 Subject: add tq --- tq | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 tq diff --git a/tq b/tq new file mode 100755 index 0000000..88c6d87 --- /dev/null +++ b/tq @@ -0,0 +1,17 @@ +#!/bin/sh +# tq CMD... - tmux wrapper for nq to display output in new window + +set -e + +s=$(nq "$@") +p=${s##*.} + +printf '%s\n' "$s" + +if [ -n "$p" ] && [ -n "$TMUX" ]; then + tmux new-window -a -d -n '<' -c '#{pane_current_path}' \ + "trap true INT QUIT TERM EXIT; + tail -F --pid=$p $s || kill $p; + printf '[%d exited, ^D to exit.]\n' $p; + cat >/dev/null" +fi -- cgit 1.4.1