2 つのファイルがあります。1 つのファイルはデータで、もう 1 つのファイルはデータ ファイルから抽出する行番号のリストです。awk を使用して行ファイルを読み取り、行番号に一致する行を抽出できますか?
例: データファイル:
This is the first line of my data
This is the second line of my data
This is the third line of my data
This is the fourth line of my data
This is the fifth line of my data
行番号ファイル
1
4
5
出力:
This is the first line of my data
This is the fourth line of my data
This is the fifth line of my data
私はコマンドライン awk と sed を本当に単純なものにしか使用したことがありません。これは私をはるかに超えており、答えなしで1時間グーグルで検索しています。