25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # tmux/.profile.d/20-functions-tmux.sh
- t()
- {
- if [ -z "$1" ]; then
- echo "Supply a tmux session name to connect to/create"
- else
- tmux has-session -t "$1" 2>/dev/null
- [ $? != 0 ] && tmux new-session -d -s "$1"
- tmux attach-session -d -t "$1"
- fi
- }
|