Created
June 5, 2024 21:30
-
-
Save asokolsky/ac2af4b96a0c9c8b4a335e3536147651 to your computer and use it in GitHub Desktop.
one-liner to do url-decoding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -n "%21%20" | python3 -c "import sys; from urllib.parse import unquote; print(unquote(sys.stdin.read()));" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment