Shell Scripting > Wildcards > Flashcards
*
matches zero or more characters
?
matches a single character
[abc]
matches a single character that is a, b or c
?[abc]*
matches a file that has a single character before a, b or c and can have more after that