使用 shell 脚本或命令,把文本中=左边的字符串变成=右边的字符串,求交流方法 文本类似于这样:
\x20= \x21=! \x22=" \x23=# \x24=$ \x25=% \x26=& \x27=' \x28=(
文本全文链接: http://77g7gi.com1.z0.glb.clouddn.com/orig.txt
要求替换后文本变成:
= !=! "=" #=# $=$ %=% &=& '=' (=(
文本全文链接: http://77g7gi.com1.z0.glb.clouddn.com/dest.txt
求最简单的方法...
1
F0nebula 2018-04-12 20:33:42 +08:00 2
cat orig.txt| xargs -0 echo -e {}
|
3
F0nebula 2018-04-13 22:05:56 +08:00
|