码迷,mamicode.com
首页 > Web开发 > 详细

url_encode and url_decode in Shell

时间:2017-06-18 20:45:33      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:oca   post   logs   color   bsp   shell   http   tps   title   

之前写过一版 shell下解码url,下面给出另外一个版本

from https://gist.github.com/cdown/1163649

function urlencode() {
    local LANG=C
    for ((i=0;i<${#1};i++)); do
        if [[ ${1:$i:1} =~ ^[a-zA-Z0-9\.\~\_\-]$ ]]; then
            printf "${1:$i:1}"
        else
            printf %%%02X "‘${1:$i:1}"
        fi
    done
}
urldecode() {
    # urldecode <string>

    local url_encoded="${1//+/ }"
    printf %b "${url_encoded//%/\\x}"
}

好用就行

url_encode and url_decode in Shell

标签:oca   post   logs   color   bsp   shell   http   tps   title   

原文地址:http://www.cnblogs.com/westfly/p/7045162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!