基本正規表現
基本正規表現
サンプルファイルを作成します
sample.txt
[user01@localhost ~]$ vi sample.txt apple bat ball ant eat pant perple taste
ファイル確認
[user01@localhost ~]$ cat sample.txt apple bat ball ant eat pant perple taste
図
「a」が含まれた文字を検索します。
[user01@localhost ~]$ cat sample.txt | egrep a apple bat ball ant eat pant taste
図
^を使用してaで始まる文字を検索してみましょう
[user01@localhost ~]$ cat sample.txt | egrep ^a apple ant
図
$を使用してtで終わる行のみを検索します
[user01@localhost ~]$ cat sample.txt | egrep t$ bat ant eat pant