使用shell脚本向特定文件添加一行

时间:2013-04-17 07:37:09

标签: shell search add filenames

您能否建议我使用shell脚本执行以下操作: 我需要搜索包含特定字符串的文件名的文件,例如。搜索名称中包含子字符串“_ww.txt”的所有文件。然后,对于这些文件,我需要在顶部添加注释“#found file”。

1 个答案:

答案 0 :(得分:1)

你去:

  find . -name "*_ww.txt" -printf "#found\n%p\n"