0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

tmuxで default という名前のセションがあればアタッチし、なければその名前のセションを作成する

Posted at

tmuxで default という名前のセションがあればアタッチし、なければその名前のセションを作成する。

# ~/.bashrc or ~/.zshrc に追加

tmux() {
  if [ "$#" -eq 0 ]; then
    # 引数なし→default セッションへアタッチ/なければ作成
    command tmux attach-session -t default 2>/dev/null \
      || command tmux new-session -s default
  else
    # 引数あり→通常の tmux コマンドとして実行
    command tmux "$@"
  fi
}

image.png

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?