Escape &'s in path name. Need to find general function for escaping all
shell metacharacters.
This commit is contained in:
parent
751f34c962
commit
87920fb111
@ -5,7 +5,8 @@
|
||||
# Run dirpersiststore in ~/.zlogout
|
||||
|
||||
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 () {
|
||||
@ -19,4 +20,4 @@ setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
|
||||
dirpersistrestore
|
||||
|
||||
# Make popd changes permanent without having to wait for logout
|
||||
alias popd="popd;dirpersiststore"
|
||||
alias popd="popd;dirpersiststore"
|
||||
|
Reference in New Issue
Block a user