Ver código fonte

cd use pushd

pull/1/head
10sr 12 anos atrás
pai
commit
d027d082cd
1 arquivos alterados com 14 adições e 0 exclusões
  1. +14
    -0
      bashrc

+ 14
- 0
bashrc Ver arquivo

@@ -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


Carregando…
Cancelar
Salvar