Examples of Wildcards You Might Use
 
 
cd *5 to go the WorkSession5 directory
wc -w *.mif  to count words in a book
ls sm?th     to find smith and smyth 
ls *.htm* to find .htm and .html files
mv *.htm* ../place-to-move  to move web files (.htm or .html) up to that directory
- Note: mv *.htm? does not match *.htm