I'd like to write a script that will parse the crontab and report jobs that will run the next day. Using the read command to read each line, into variables minute,hr,dom,mon,dow,cmd. When the read command sees the * character in a cronjob, it converts the output to all files in the directory. What's the best way to parse the fields in the crontab, interpreting * as a character itself, so I can say in a case statement, when dow=* then command will run everyday of the week ?