fish/functions/urlencode.fish @ 08965030b28b

Roswellize the lispindent thing, unfuck paredit, and more
author Steve Losh <steve@stevelosh.com>
date Wed, 20 Apr 2016 10:38:25 +0000
parents d66bfb2537fe
children (none)
function urlencode -d "Urlencode the plaintext input"
    python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1]);" $argv
end