Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 shell 脚本的新手,我正在尝试找出以下内容。
如何在文件中搜索包含特定字符串的行并将该行复制到新文件(如果该行存在)?
grep "string" file >copyFile
这将创建一个新文件或清空现有文件。
grep "string" file >>copyFile
这将创建一个新文件或将找到的字符串附加到现有文件。
注意:"string"是一个正则表达式。看一下man grep语法。
"string"
man grep