Globbing Flashcards
1
Q
*
A
matches zero or more characters, i.e. ls *.txt
2
Q
?
A
matches any single character, i.e. ls?.txt
3
Q
[abc]
A
matches any one of the character except those in the list, case sensitive.
i.e. ls [Pp].csv, [p].csv
4
Q
[^abc]
A
matches any one character except those in the list, case sensitive.
i.e. ls [^WtT]*
5
Q
[0-9]
A
matches a range or numbers