Hi all,
I have a running cron job as below:
*/10 * * * * java -classpath "/shared/smsfiles/camps/jean.jar" emailrpts "71.25.24.45" "sile@lango.com" "password" >>/dev/null
I would like to change the parameters "71.25.24.45" "sile@lango.com" "password" to "51.25.24.40" "jimbo@jalango.com" "passwordtwo".
Whenever I change on the crontab and save, the application running seems to still use the old values.
How can I make sure that I clear from the system the old values, and have it pick up the new values immediately?
Thanks in advance.