正则几个实用的命令方法
下面介绍几个正则表达式的几个实用的方法
提取test.txt文档里包含abc123的所有行
cat test.txt|grep 'abc123'|awk -F '|' '{print $1}'|sort|cat>a1
提取test.txt文档里以com为后缀的6位数字和字母域名的所有行
cat test.txt|egrep -i '^[a-z0-9]{0,6}\.com'|sort|cat>a1
记录生活的点点滴滴
下面介绍几个正则表达式的几个实用的方法
提取test.txt文档里包含abc123的所有行
cat test.txt|grep 'abc123'|awk -F '|' '{print $1}'|sort|cat>a1
提取test.txt文档里以com为后缀的6位数字和字母域名的所有行
cat test.txt|egrep -i '^[a-z0-9]{0,6}\.com'|sort|cat>a1