- ?
- *
- []
- {}
Meta-characters (Wildcards)
- ? match any single character
- * match any number of characters (0 or more) (except /)
- [abC] character class - matches a, b, or C
- [b-e] character class - matches b, c, d, or e
- [!b-e] character class - matches any single character except b, c, d, or e
- name_{x,y,z} - name_x, name_y, name_z all at the same time
Can be used with 'ls' and other commands on the command line.