add old scripts

This commit is contained in:
Steve B 2025-12-05 15:46:07 -05:00
commit 9c1772908b
18 changed files with 338 additions and 0 deletions

11
util/urld Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
urldecode_single_printf () {
local string=$1
string=${string//+/ }
printf '%b\n' "${string//%/\\x}"
}
urldecode_single_printf "$1"