LoginSignup
9
8

More than 5 years have passed since last update.

tmuxで自動的にセッションを張る、あるいはアタッチ

Posted at
if [ -z $TMUX ]; then
  if $(tmux has-session); then
    tmux attach
  else
    tmux
  fi
fi

tmuxのセッションの中にいる場合、$TMUXという環境変数がセットされる。
また、has-sessionコマンドはtmuxのセッションが存在しているかどうかを終了コードで確認するのに使える。

9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8