我有一个包含编码的用户代理列表的文件。
例如。:
例如。:
Mozilla%2F5.0%20%28Macintosh%3B%20U%3B%20Intel%20Mac%20OS%20X%2010.6%3B%20en
我想要一个可以读取此文件并使用解码字符串写入新文件的shell脚本。
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en
我一直在试图用这个例子来实现,但是迄今为止还没有工作。
$ echo -e "$(echo "%31+%32%0A%33+%34" | sed 'y/+/ /; s/%/\\x/g')"
我的脚本看起来像:
#!/bin/bash for f in *.log; do echo -e "$(cat $f | sed 'y/+/ /; s/%/\x/g')" > y.log done
GNU awk
原文链接:https://www.f2er.com/bash/387529.html#!/usr/bin/awk -fn @include "ord" BEGIN { RS = "%.." } { printf RT ? $0 chr("0x" substr(RT,2)) : $0 }
要么
#!/bin/sh awk -niord '{printf RT?$0chr("0x"substr(RT,2)):$0}' RS=%..