diff options
-rwxr-xr-x | tq | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tq b/tq index 88c6d87..1a8bbeb 100755 --- a/tq +++ b/tq @@ -9,9 +9,9 @@ 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" + 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 |