summaryrefslogtreecommitdiff
path: root/bashrc
diff options
context:
space:
mode:
Diffstat (limited to 'bashrc')
-rw-r--r--bashrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index 4c26cf5..98b45cd 100644
--- a/bashrc
+++ b/bashrc
@@ -53,7 +53,16 @@ alias egrep="egrep --color=auto"
alias xpdf="xpdf -cont"
alias feh="feh --magick-timeout=0"
alias xclip="xclip -selection c"
+alias pd=popd
+cd() {
+ if [ $# -eq 0 ] ; then
+ d=$HOME
+ else
+ d=$@
+ fi
+ pushd "$d" >/dev/null
+}
# u=rwx,g=,o=
umask 077