I am writing a program called mywc that mimics a scaled back version of wc. It accepts as command line arguments file(s) and tallies the number of characters, words and lines in that file(s). My particular problem is that I want it to accept all files from the current directory if the user enters "mywc *" rather than having them type out all the files by name. I'm sure that it is possible, but I'm not sure how to do it. Thanks.