パターンマッチング
Pattern matching
文字列を何らかの書式で記述されたパターンで比較する手法
正規表現を含む、より大きな表現になる。
ファイル/ディレクトリ名のマッチング
(grob)
シェルスクリプトによるマッチング
case
コマンドによる文字列マッチング
grep
sed
awk
POSIX のパターンマッチング
2.13. Pattern Matching Notation https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_13
POSIX の正規表現
9. Regular Expressions https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09
(BRE) https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_03
(ERE) https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_04
参考
シェルスクリプトの正規表現の詳細解説(令和最新版)〜 基本正規表現(BRE)と拡張正規表現(ERE)
https://qiita.com/ko1nksm/items/53abc144558b9bb5629f
grepによる正規表現判定
シェルによる正規表現判定