We have a cron job under a specific user's crontab which should be running only on working week days. Job was running all days before we changed it.
After we changed in the following line the days statement from '*' to '1-5', testscript.sh is still running all days and the weekend that is not supposed to.
00 21 * * 1-5 /usr/local/bin/test_script.sh >> /var/log/userdirectory/test_script.log 2>&1
Any ideas why?