mirror of
https://github.com/mr0xb/scripts.git
synced 2026-08-27 19:34:57 -04:00
11 lines
161 B
Shell
Executable file
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"
|