Parcourir la source

cd use pushd

pull/1/head
10sr il y a 12 ans
Parent
révision
d027d082cd
1 fichiers modifiés avec 14 ajouts et 0 suppressions
  1. +14
    -0
      bashrc

+ 14
- 0
bashrc Voir le fichier

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


Chargement…
Annuler
Enregistrer