UNIX example Meaning
* # All files in the current directory and one
level below
. # Files in the current directory
*.* # All files that contain a period in the filename |
*.com # All files in the current directory that
end in .com
?.com # All files in the current directory that
end in .com and have one character
preceding the period
name[xyz] # All files in the current directory, namex,
namey, or namez
name[a-z] # All files in the current directory namea
through namez
name[a-z4] # All files in the current directory, namea
through namez and name4
| |