RHCSA练习题12:grep匹配字符串

在mars.lab.example.com上执行

  • 查找文件 /usr/share/doc/words/readme.txt 中包含字符串 crosswords 的所有行。
  • 将所有这些行的副本按原始顺序放在文件/root/list中。
  • /root/list不得包含空行, 且所有行必须是 /usr/share/doc/words/readme.txt 中原始行的确切副本

Answer:
grep crosswords /usr/share/doc/words/readme.txt > /root/list
验证:
more /root/list

file