Switch to cd / pd / vd
parent
ec4dc7b303
commit
fcd79d9009
|
|
@ -1,11 +1,16 @@
|
||||||
# cd becomes pushd
|
# cd becomes pushd
|
||||||
#
|
#
|
||||||
# Add to stack with: cd /path/to/directory
|
# cd : Push directory to stack and change directory
|
||||||
# Delete current dir from stack with: popd
|
# ex $ cd /path/to/directory
|
||||||
# Show stack with: dirs
|
#
|
||||||
|
# pd : Pop directory off stack and change to previous directory
|
||||||
|
# ex $ pd
|
||||||
|
#
|
||||||
|
# vd : View directory stack
|
||||||
|
|
||||||
cite about-plugin
|
cite about-plugin
|
||||||
about-plugin 'always use pushd - cd becomes pushd'
|
about-plugin 'always use pushd - cd becomes pushd'
|
||||||
|
|
||||||
alias cd='pushd'
|
alias cd='pushd'
|
||||||
alias dirs='dirs -v'
|
alias pd='popd'
|
||||||
|
alias vd='dirs -v'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue