I have been working on setting a cron job programmatically in a Bash script.
In it I have a line like:
JOB="00 12 * * * sh dosomething.sh"
I noticed if I echoed the var $JOB, it contains the files of the directory?
Is there a way to store the * symbole in a var as a normal character?
Thank you,