「Linux」grepとcutコマンドを使ってファイルの特定内容を取得する方法
書式
grep 正規表現式 ファイル名 | cut -d: -f2
cutコマンドのオプション
-f, –fields=LIST select only these fields; also print any line
that contains no delimiter character, unless
the -s option is specified
-n with -b: don’t split multibyte characters
使用例
# cat mailsample.txt
From:123@test.com
From:456@test.com
789@test.com
From:110@test.com
cutコマンドで2番目のフィールドを抽出する
# grep '^From’ mailsample.txt |cut -d: -f2
123@test.com
456@test.com
110@test.com