$ screen tail -f /path/to/log
GNU Screenだと新しいウィンドウをつくって、その中でtail -f /path/to/log
を実行できる。
$ tmux new-window tail -f /path/to/log
一方、tmuxだと "usage: new-window [-adk] [-n window-name] [-t target-window] [command]" と言われてエラーになる。
tmux-new-window() { command tmux new-window "$*" }
これで tmux-new-window tail -f /path/to/log
とかできる。よかったよかった。
いろいろイケてないのでやっぱりscreenの中で生きることにした。