นี่คือคำตอบ BASH บริสุทธิ์
rawurlencode() {
local string="${1}"
local strlen=${#string}
local encoded=""
local pos c o
for (( pos=0 ; pos<strlen ; pos++ )); do
c=${string:$pos:1}
case "$c" in
[-_.~a-zA-Z0-9] ) o="${c}" ;;
* ) printf -v o '%%%02x' "'$c"
esac
encoded+="${o}"
done
echo "${encoded}" # You can either set a return variable (FASTER)
REPLY="${encoded}" #+or echo the result (EASIER)... or both... :p
}
คุณสามารถใช้ได้สองวิธี:
easier: echo http://url/q?=$( rawurlencode "$args" )
faster: rawurlencode "$args"; echo http://url/q?${REPLY}
[แก้ไข]
นี่คือฟังก์ชั่น rawurldecode () ที่ตรงกันซึ่งด้วยความสุภาพเรียบร้อยยอดเยี่ยม
# Returns a string in which the sequences with percent (%) signs followed by
# two hex digits have been replaced with literal characters.
rawurldecode() {
# This is perhaps a risky gambit, but since all escape characters must be
# encoded, we can replace %NN with \xNN and pass the lot to printf -b, which
# will decode hex for us
printf -v REPLY '%b' "${1//%/\\x}" # You can either set a return variable (FASTER)
echo "${REPLY}" #+or echo the result (EASIER)... or both... :p
}
ด้วยชุดการจับคู่ตอนนี้เราสามารถทำการทดสอบง่ายๆ:
$ diff rawurlencode.inc.sh \
<( rawurldecode "$( rawurlencode "$( cat rawurlencode.inc.sh )" )" ) \
&& echo Matched
Output: Matched
และถ้าคุณรู้สึกว่าคุณต้องการเครื่องมือภายนอกจริง ๆ (มันจะไปเร็วขึ้นมากและอาจทำไฟล์ไบนารี่และ ... ) ฉันพบสิ่งนี้ในเราเตอร์ OpenWRT ของฉัน ...
replace_value=$(echo $replace_value | sed -f /usr/lib/ddns/url_escape.sed)
โดยที่ url_escape.sed เป็นไฟล์ที่มีกฎเหล่านี้:
# sed url escaping
s:%:%25:g
s: :%20:g
s:<:%3C:g
s:>:%3E:g
s:#:%23:g
s:{:%7B:g
s:}:%7D:g
s:|:%7C:g
s:\\:%5C:g
s:\^:%5E:g
s:~:%7E:g
s:\[:%5B:g
s:\]:%5D:g
s:`:%60:g
s:;:%3B:g
s:/:%2F:g
s:?:%3F:g
s^:^%3A^g
s:@:%40:g
s:=:%3D:g
s:&:%26:g
s:\$:%24:g
s:\!:%21:g
s:\*:%2A:g