diff --git a/Intro_shell/lessons/01_the_filesystem.md b/Intro_shell/lessons/01_the_filesystem.md index 2f7906fb..f5cf1d0c 100644 --- a/Intro_shell/lessons/01_the_filesystem.md +++ b/Intro_shell/lessons/01_the_filesystem.md @@ -323,13 +323,13 @@ Tab completion can also fill in the names of commands. For example, enter `e An asterisk/star is only one of the many wildcards in UNIX, but this is the most powerful one and we will be using this one the most for our exercises. +> **NOTE: The wildcard (*) used in shell is different than how it is used in regular expressions.** For example in regular expressions, you have to use .* to mean "zero or more characters". ****