aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-04-29 16:09:04 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-04-29 16:09:04 +1200
commit5f1c44d1b74edf836bb489bb96a409c9aeb402ad (patch)
treeddd27f648134a5785a8bcd566e6f6383a373b11e /sh
parentWhoops, didn't mean to delete it (diff)
downloaddotfiles-5f1c44d1b74edf836bb489bb96a409c9aeb402ad.tar.gz
dotfiles-5f1c44d1b74edf836bb489bb96a409c9aeb402ad.zip
Keep OLDPWD between logins
Diffstat (limited to 'sh')
-rw-r--r--sh/profile.d/oldpwd.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/sh/profile.d/oldpwd.sh b/sh/profile.d/oldpwd.sh
new file mode 100644
index 00000000..96786338
--- /dev/null
+++ b/sh/profile.d/oldpwd.sh
@@ -0,0 +1,6 @@
+# If we can read ~/.oldpwd, make its contents our OLDPWD
+if [ -r "${OLDPWD_FILE:-$HOME/.oldpwd}" ] ; then
+ read -r OLDPWD < "${OLDPWD_FILE:-$HOME/.oldpwd}"
+ export OLDPWD
+fi
+