Guest User

Untitled

a guest
Sep 19th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. # README
  2.  
  3. ```shell
  4. alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.stdin.read())"'
  5. ```
  6.  
  7. ```shell
  8. alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.stdin.read())"'
  9. ```
Add Comment
Please, Sign In to add comment