Commit 21e2a913 authored by Matt Cable's avatar Matt Cable
Browse files

Escape &'s in path name. Need to find general function for escaping all

shell metacharacters.
parent 870551e9
...@@ -5,7 +5,8 @@ ...@@ -5,7 +5,8 @@
# Run dirpersiststore in ~/.zlogout # Run dirpersiststore in ~/.zlogout
dirpersiststore () { dirpersiststore () {
dirs -p | sed 's/ /\\ /g;s/^/pushd -q /;1!G;h;$!d;' > ~/.zdirstore # FIXME: need to escape all shell metacharacters, not just spaces!
dirs -p | sed 's/ /\\ /g;s/&/\\&/;s/^/pushd -q /;1!G;h;$!d;' > ~/.zdirstore
} }
dirpersistrestore () { dirpersistrestore () {
...@@ -19,4 +20,4 @@ setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups ...@@ -19,4 +20,4 @@ setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
dirpersistrestore dirpersistrestore
# Make popd changes permanent without having to wait for logout # Make popd changes permanent without having to wait for logout
alias popd="popd;dirpersiststore" alias popd="popd;dirpersiststore"
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment