url decoder

This commit is contained in:
Noah Masur 2021-10-22 07:34:27 -04:00
parent a1962afef0
commit f92b7cf891

5
bin/url-decode Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
function urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; }
urldecode "$@"