Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
181a2ed5
"debian-software" did not exist on "23f6a4ac3a5f8bcd191b5d59dc92680ea34225c5"
Commit
181a2ed5
authored
Apr 22, 2010
by
Matt Cable
Browse files
Escape some metachars that trip up .zdirstore script
parent
21e2a913
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/dirspersist.zsh
View file @
181a2ed5
...
@@ -5,8 +5,7 @@
...
@@ -5,8 +5,7 @@
# Run dirpersiststore in ~/.zlogout
# Run dirpersiststore in ~/.zlogout
dirpersiststore
()
{
dirpersiststore
()
{
# FIXME: need to escape all shell metacharacters, not just spaces!
dirs
-p
|
tail
-r
| perl
-ne
'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"'
>
~/.zdirstore
dirs
-p
|
sed
's/ /\\ /g;s/&/\\&/;s/^/pushd -q /;1!G;h;$!d;'
>
~/.zdirstore
}
}
dirpersistrestore
()
{
dirpersistrestore
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment