소스 검색

upddate function mkcd

pull/1/head
10sr 11 년 전
부모
커밋
7da46f2cbd
1개의 변경된 파일8개의 추가작업 그리고 2개의 파일을 삭제
  1. +8
    -2
      bashrc

+ 8
- 2
bashrc 파일 보기

@@ -496,8 +496,14 @@ tb(){
}

mkcd(){
mkdir -p $1
cd $1
if test -d "$1"
then
echo "Dir \"$1\" already exists."
else
mkdir -p "$1"
echo "Dir \"$1\" created."
fi
cd "$1"
}

if test -n "$TMUX" && null type reattach-to-user-namespace


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