ファイルから上位 2 行 (180 行のセット) を抽出して、ファイルを 6 ~ 6 行のセットにグループ化すると、最初の 2 行が出力として得られるようにしたいと考えています。したがって、1 番目、2 番目に続いて 7 番目、8 番目などを取得できるはずです。これに sed を使用してみましたが、目的の出力が得られませんでした。
ここに実装するロジックを提案してください。
私の要件は、6 行のセットごとに、最初の 2 行にいくつかの変更を加える (特定の文字を削除するなど) ことです。
例:
This is line command 1 for my configuration
This is line command 2 for my configuration
This is line command 3 for my configuration
This is line command 4 for my configuration
This is line command 5 for my configuration
This is line command 6 for my configuration
私が望む出力は次のとおりです。
This is line command 1
This is line command 2
This is line command 3 for my configuration
This is line command 4 for my configuration
This is line command 5 for my configuration
This is line command 6 for my configuration
これは、180 コマンドのうち 6 コマンドごとに繰り返す必要があります。