ソースを参照

add new function tx

pull/1/head
10sr 11年前
コミット
f0028a21c3
1個のファイルの変更21行の追加9行の削除
  1. +21
    -9
      bashrc

+ 21
- 9
bashrc ファイルの表示

@@ -473,18 +473,30 @@ input(){
echo $foo
}

tmux(){
# tmux(){
# if test $# -eq 0
# then
# (cd ~; command tmux start;)
# if command tmux has -t main
# then
# command tmux attach -t main
# else
# (cd ~; command tmux new -s main;)
# fi
# else
# command tmux "$@"
# fi
# }
tx(){
if test $# -eq 0
then
(cd ~; command tmux start;)
if command tmux has -t main
then
command tmux attach -t main
else
(cd ~; command tmux new -s main;)
fi
tmux ls
echo "tx <session> to attach."
elif tmux has -t "$1"
then
tmux attach -t "$1"
else
command tmux "$@"
tmux new -s "$1"
fi
}



読み込み中…
キャンセル
保存