Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Interpret * as character

Status
Not open for further replies.

mpezeur

MIS
Nov 7, 2002
123
US
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 ?
 
Y'all decide for yourselves:

#!/bin/ksh

char=*
print double "$char"
print none $char
print single '$char'
print single double '"$char"'
print double single "'$char'"
print backslash \$char
Returns the following:

double *
none 0 19776Work. 1q 26146excludedirs 26146mkdirback.exec 27164Work. 27202Work.
single $char
single double "$char"
double single '*'
backslash $char

And of course from the command line:

print * #prints everything
print \* #prints *
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top