* # match any possible sequence of characters
? # match one character

Example

ls *.dat # list all files ending wih .dat
ls data_?.dat # all files with names data_X.dat