소스 검색

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
}



불러오는 중...
취소
저장