【使用例紹介】該当行を抽出/正規表現利用:grep -E【シェルスクリプト】

雑学

備忘録になります。

# cat wrk.txt
abc123
123abc

# cat wrk.txt | grep -E "^abc"
abc123

関連リンク