I want to pass a directory filter as a command line argument as such:
./script *.c
But *.c expands to every .c file in the directory on the command line,
so instead of 1 argument, I get several arguments.
Is there way for the script to receive *.c instead of a list of files. I
want the variable $1 to be "*.c"
TIA