linux shell 问题,清除文件中的空格,并每两个字符中插入\x
假设文件是ss.txt内容是:d7d3253c6f63b88166d0af1003547074f5cf97ac35b16d6e0b20ca7f8974e298怎么将空格去...
假设文件是ss.txt
内容是:
d7d3 253c 6f63 b881 66d0 af10 0354 7074
f5cf 97ac 35b1 6d6e 0b20 ca7f 8974 e298
怎么将空格去掉,并每两个字符中插入\x,变成xd7\xd3\x25\x3c\x6f\x63\xb8\x81\x66\xd0\xaf\x10\x03\x54\x70\x74\xf5\xcf\x97\xac\x35\xb1\x6d\x6e\x0b\x20\xca\x7f\x89\x74\xe2\x98。
求shell大神,写个脚本也可以。多谢 展开
内容是:
d7d3 253c 6f63 b881 66d0 af10 0354 7074
f5cf 97ac 35b1 6d6e 0b20 ca7f 8974 e298
怎么将空格去掉,并每两个字符中插入\x,变成xd7\xd3\x25\x3c\x6f\x63\xb8\x81\x66\xd0\xaf\x10\x03\x54\x70\x74\xf5\xcf\x97\xac\x35\xb1\x6d\x6e\x0b\x20\xca\x7f\x89\x74\xe2\x98。
求shell大神,写个脚本也可以。多谢 展开
4个回答
展开全部
cat ss.txt | sed -r -e 's/\s//g' -e 's/(..)/\\x\1/g'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#! /bin/bash
Source_file=$1
if [ ! -e $Source_file ]; then
echo "$Source_file do not exist"
exit 1
fi
sed -i 's/[[:space:]]*//g' $Source_file
if [ $? -ne 0 ]; then
echo "Delete spcae error"
exit 1
fi
sed -i 's/\(..\)/\1\\x/g' $Source_file
if [ $? -ne 0 ]; then
echo "Add '\x' error"
exit 1
fi
Source_file=$1
if [ ! -e $Source_file ]; then
echo "$Source_file do not exist"
exit 1
fi
sed -i 's/[[:space:]]*//g' $Source_file
if [ $? -ne 0 ]; then
echo "Delete spcae error"
exit 1
fi
sed -i 's/\(..\)/\1\\x/g' $Source_file
if [ $? -ne 0 ]; then
echo "Add '\x' error"
exit 1
fi
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用正则表达式很简单,
1、/\s+//g
替换掉空格
2、/(..)/\\x$1/g
增加\x
一般linux默认都有perl,就用perl做两个正则表达式替换。
1、/\s+//g
替换掉空格
2、/(..)/\\x$1/g
增加\x
一般linux默认都有perl,就用perl做两个正则表达式替换。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询