Regex example with dot and asterisk
Example:
grep -r '/.*/' /etc
Begins with /
has 0 or more characters in between
ends with a /
Basically we allow any number of characters to exist between / and /