egrepএক্সটেন্ডেড
regexব্যবহার করে ফাইলে প্যাটার্ন খুঁজুন। দ্রষ্টব্য: এই কমান্ডটিgrep --extended-regexp- এর একটি উপনাম। আরও তথ্য পাবেন: https://manned.org/egrep।
egrep '{{a}}+' {{path/to/file}}
egrep '{{a}}?' {{path/to/file}}
egrep '{{a}}{10}' {{path/to/file}}
egrep '{{a}}{3,7}' {{path/to/file}}
egrep '{{cat}}|{{dog}}|{{mouse}}' {{path/to/file}}
egrep 'c({{a}}|{{o}}|{{u}})p' {{path/to/file}}
egrep '({{aeiou}})+' {{path/to/file}}
egrep [[{{:alnum:|:alpha:|:space:|...}}]] {{path/to/file}}