A BBEdit Text Filter script to take textual input and produce URL decoded text of the same.
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
#!/bin/bash | |
# | |
# URL Decode | |
# https://gist.github.com/levigroker/892fd435d701b4e8f56bfcec819d5ef2 | |
# | |
# A BBEdit Text Filter script to take textual input and produce URL decoded text of the same. | |
# See https://www.bbeditextras.org/text-filters/ | |
# Levi Brown | |
# @levigroker | |
# levigroker@gmail.com | |
# January 12, 2018 | |
## | |
IN=$(tee) | |
CMD="echo urldecode('${IN}');" | |
OUT=$(php -r "$CMD") | |
echo -n "${OUT}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment