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
26b3e101
Commit
26b3e101
authored
Dec 03, 2012
by
Robby Russell
Browse files
Merge pull request #1460 from tresni/patch-4
urltools for everyone
parents
2f0717cb
80f151e5
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/urltools/urltools.plugin.zsh
View file @
26b3e101
...
@@ -4,6 +4,33 @@
...
@@ -4,6 +4,33 @@
# Taken from:
# Taken from:
# http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
# http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
alias
urlencode
=
'node -e "console.log(encodeURIComponent(process.argv[1]))"'
if
[[
$(
whence
$URLTOOLS_METHOD
)
=
""
]]
;
then
URLTOOLS_METHOD
=
""
fi
alias
urldecode
=
'node -e "console.log(decodeURIComponent(process.argv[1]))"'
if
[[
$(
whence node
)
!=
""
&&
(
"x
$URLTOOLS_METHOD
"
=
"x"
||
"x
$URLTOOLS_METHOD
"
=
"xnode"
)
]]
;
then
alias
urlencode
=
'node -e "console.log(encodeURIComponent(process.argv[1]))"'
alias
urldecode
=
'node -e "console.log(decodeURIComponent(process.argv[1]))"'
elif
[[
$(
whence python
)
!=
""
&&
(
"x
$URLTOOLS_METHOD
"
=
"x"
||
"x
$URLTOOLS_METHOD
"
=
"xpython"
)
]]
;
then
alias
urlencode
=
'python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"'
alias
urldecode
=
'python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'
elif
[[
$(
whence ruby
)
!=
""
&&
(
"x
$URLTOOLS_METHOD
"
=
"x"
||
"x
$URLTOOLS_METHOD
"
=
"xruby"
)
]]
;
then
alias
urlencode
=
'ruby -r cgi -e "puts CGI.escape(ARGV[0])"'
alias
urldecode
=
'ruby -r cgi -e "puts CGI.unescape(ARGV[0])"'
elif
[[
$(
whence php
)
!=
""
&&
(
"x
$URLTOOLS_METHOD
"
=
"x"
||
"x
$URLTOOLS_METHOD
"
=
"xphp"
)
]]
;
then
alias
urlencode
=
'php -r "echo rawurlencode(\$argv[1]); echo \"\n\";"'
alias
urldecode
=
'php -r "echo rawurldecode(\$argv[1]); echo \"\\n\";"'
elif
[[
$(
whence perl
)
!=
""
&&
(
"x
$URLTOOLS_METHOD
"
=
"x"
||
"x
$URLTOOLS_METHOD
"
=
"xperl"
)
]]
;
then
if
perl
-MURI
::Encode
-e
1&> /dev/null
;
then
alias
urlencode
=
'perl -MURI::Encode -ep "uri_encode($ARGV[0]);"'
alias
urldecode
=
'perl -MURI::Encode -ep "uri_decode($ARGV[0]);"'
elif
perl
-MURI
::Escape
-e
1 &> /dev/null
;
then
alias
urlencode
=
'perl -MURI::Escape -ep "uri_escape($ARGV[0]);"'
alias
urldecode
=
'perl -MURI::Escape -ep "uri_unescape($ARGV[0]);"'
else
alias
urlencode
=
"perl -e '
\$
new=
\$
ARGV[0];
\$
new =~ s/([^A-Za-z0-9])/sprintf(
\"
%%%02X
\"
, ord(
\$
1))/seg; print
\"\$
new
\n\"
;'"
alias
urldecode
=
"perl -e '
\$
new=
\$
ARGV[0];
\$
new =~ s/
\%
([A-Fa-f0-9]{2})/pack(
\"
C
\"
, hex(
\$
1))/seg; print
\"\$
new
\n\"
;'"
fi
fi
unset
URLTOOLS_METHOD
\ No newline at end of file
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