Skip to content

Instantly share code, notes, and snippets.

@atulsingh0
Created December 7, 2021 13:19
Show Gist options
  • Save atulsingh0/91142b92afd8a558a94ae1b63b395516 to your computer and use it in GitHub Desktop.
Save atulsingh0/91142b92afd8a558a94ae1b63b395516 to your computer and use it in GitHub Desktop.
Urldecode - Bash/Python Oneliner/Alias for Url decoding
alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'
### Usgae
#
# $ urldecode https%3A%2F%2Fwww.google.com
# https://www.google.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment