shell 下 urlencode/urldecode 编码/解码的方法
2021-02-09 01:16
标签:bsp shell int 进制 str 方法 解码 logs lin UrlEncode: 输出:%e4%bd%a0%e5%a5%bd%e4%b8%ad%e5%9b%bd 对输入数据进行十六进制的转换,并在每个转换结果前面加上%(一般urlencode会在到后台服务器的时候,自动解码) UrlDecode: 输出:你好中国 转载请注明出处:https://www.cnblogs.com/fnlingnzb-learner/p/13064885.html shell 下 urlencode/urldecode 编码/解码的方法 标签:bsp shell int 进制 str 方法 解码 logs lin 原文地址:https://www.cnblogs.com/fnlingnzb-learner/p/13064885.htmlecho ‘你好中国‘ | tr -d ‘\n‘ | xxd -plain | sed ‘s/\(..\)/%\1/g‘
#echo ‘你好中国‘ |tr -d ‘\n‘ |od -An -tx1|tr ‘ ‘ %
printf $(echo -n "%e4%bd%a0%e5%a5%bd%e4%b8%ad%e5%9b%bd" | sed ‘s/\\/\\\\/g;s/\(%\)\([0-9a-fA-F][0-9a-fA-F]\)/\\x\2/g‘)"\n"
上一篇:【记录】TS和JS的区别
下一篇:css3图片防止变形
文章标题:shell 下 urlencode/urldecode 编码/解码的方法
文章链接:http://soscw.com/index.php/essay/52887.html