Im using while 循环
while read line; do
echo $line done < FILE
我需要修改以搜索文件中的行,一旦包含$string行=测试我需要将此行复制到输出文件任何提示
使用 grep
:
grep -F 'test' input_file > output_file