0

単語(検索された単語/行)からファイルの終わりまでファイルの内容をコピーしたい。

例:File1:

this is a sample text for file1 in PA
this is a sample text for file1 in CA
this is a sample text for file1 in CT
this is a sample text for file1 in IL
this is a sample text for file1 in MI
end of the file.

「CT」のある行からファイルの最後まで内容をfile2にコピーしたい。出力:File2

this is a sample text for file1 in CT
this is a sample text for file1 in IL
this is a sample text for file1 in MI
end of the file.
4

2 に答える 2

3

あなたが使用することができますsed

sed -n '/searchtext/,$p' file1 > file2

またはawk

awk '/searchtext/ {flag=1} flag;' file1 > file2
于 2012-08-29T21:53:02.007 に答える
1
awk '{if($0~/CT/)p=1;if(p)print}' your_file
于 2012-08-30T05:58:15.493 に答える