您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
264 B

  1. # tmux/.profile.d/20-functions-tmux.sh
  2. t()
  3. {
  4. if [ -z "$1" ]; then
  5. echo "Supply a tmux session name to connect to/create"
  6. else
  7. tmux has-session -t "$1" 2>/dev/null
  8. [ $? != 0 ] && tmux new-session -d -s "$1"
  9. tmux attach-session -d -t "$1"
  10. fi
  11. }