🐈

コマンドラインからPCREを使う方法

2023/05/06に公開

コマンドラインからPCRE(Perl-compatible Regular Expressions)を使う方法を記載します。

インストール方法

次のコマンドを実行します。インストールが完了するとpcregrepコマンドが使えるようになります。

% sudo apt-get install -y pcregrep

使い方

-oを付けると、一致した文字列のみ出力する。

%mitsuru@penguin:~/$ echo aliceblue | pcregrep -o "blue"
blue

Discussion