Concept Flow - File globbing (wildcards *, ?, [])
Start: User inputs pattern
Shell reads pattern
Match *: any chars
Match ?: single char
Match [
List matching files
Output matched filenames
End
The shell reads the pattern, matches files using wildcards (*, ?, []), then lists all matching filenames.