I'm learning about regular expression, and they are divided into basic and extended.
Basic Regular Expression(BRE) uses meta-character [ ] ^ $ . *.
It's works on grep command well. But, when we use ls, echo or something else command, it works well, too.(For example, ls -al [abc]*.txt)
But, when I learn section about pathname expansion, it uses BRE's metacharcter.
So, I think they are same. Am I right?