标签:cat div echo color span 一个 正则表达 int test
【符号】
# 换行 \n echo -e "yy\nwy" yy wy
【正则表达式】
cat test.txt yy1%yy2,yy3,yy4%yy5
# [,%] 匹配[]中的任何一个字符 cat test.txt |awk -F ‘[,%]‘ ‘{print $3}‘ yy3 # + 匹配前面正则表达式的一个或多个扩展 cat test.txt |awk -F ‘[,%]+‘ ‘{print $3}‘ yy3
标签:cat div echo color span 一个 正则表达 int test
原文地址:http://www.cnblogs.com/bxbyy/p/7978077.html