egrep
时间:2010-08-17 来源:CZFanny
egrep命令 | 描述 |
egrep '(John|Fred)' phone.txt | 打印所有包含名字John或者Fred的行 |
egrep 'John|22$|^W' phone.txt | 打印所有包含John 或者以22结束或者以W的行 |
egrep 'net(work)?s' report.txt | 从report.txt中找到所有包含networks或者nets的行 |
相关阅读 更多 +
时间:2010-08-17 来源:CZFanny
egrep命令 | 描述 |
egrep '(John|Fred)' phone.txt | 打印所有包含名字John或者Fred的行 |
egrep 'John|22$|^W' phone.txt | 打印所有包含John 或者以22结束或者以W的行 |
egrep 'net(work)?s' report.txt | 从report.txt中找到所有包含networks或者nets的行 |