Przeglądaj źródła

cd use pushd

pull/1/head
10sr 12 lat temu
rodzic
commit
d027d082cd
1 zmienionych plików z 14 dodań i 0 usunięć
  1. +14
    -0
      bashrc

+ 14
- 0
bashrc Wyświetl plik

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


Ładowanie…
Anuluj
Zapisz