返回列表 发帖
#!/bin/bash
touch newfile
for i in `sed -n '/thunder/{n;p}' filename`
do
echo $i | base64 -d>>newfile
done
sed -i 's/AA//g;s/ZZ/\n/g' newfileCOPY
---学无止境---

TOP

回复 17# forfiles
    终端乱码是编码的问题,你看看你的文本编码是什么。你的文本是不是在windows下保存,在linux运行的?我最近几天用不了电脑先,无法测试,抱歉
---学无止境---

TOP

返回列表