scripts/util/urld
2025-12-05 15:46:07 -05:00

11 lines
161 B
Shell
Executable file

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