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
Ohmyzsh
Commits
2ff567e1
Commit
2ff567e1
authored
Sep 21, 2010
by
Matt Cable
Browse files
Removed unportable (and unnecessary) grep flags
parent
8f7609b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/dirpersist.plugin.zsh
View file @
2ff567e1
...
...
@@ -9,7 +9,7 @@
zdirstore
=
~/.zdirstore
dirpersistinstall
()
{
if
grep
-qL
'dirpersiststore'
~/.zlogout
;
then
if
grep
'dirpersiststore'
~/.zlogout
>
/dev/null
;
then
else
if
read
-q
\?
"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "
;
then
echo
"# Store dirs stack
\n
# See ~/.oh-my-zsh/plugins/dirspersist.plugin.zsh
\n
dirpersiststore"
>>
~/.zlogout
...
...
@@ -19,6 +19,7 @@ dirpersistinstall () {
fi
}
# FIXME solaris doesn't support tail -r
dirpersiststore
()
{
dirs
-p
|
tail
-r
| perl
-ne
'chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"'
>
$zdirstore
}
...
...
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