瀏覽代碼

cd use pushd

pull/1/head
10sr 12 年之前
父節點
當前提交
d027d082cd
共有 1 個檔案被更改,包括 14 行新增0 行删除
  1. +14
    -0
      bashrc

+ 14
- 0
bashrc 查看文件

@@ -202,6 +202,20 @@ then
|| complete -o default -o nospace -F _git g
fi

cd(){
if test $# -eq 0
then
pushd ~/
elif test $1 = -
then
local pwd="$PWD"
popd
pushd -n "$pwd" # stack last dir
else
pushd "$@"
fi
}

input(){
local foo
stty -echo


Loading…
取消
儲存