There is a requirement to run a script every other month starting next month (March). This script is to be run every Monday, Wednesday, and Friday.
Which crontab entry achieves this?

A.
25 23 1,3,5 * 3,5,7,9,11,1 /opt/application/gather_data
B.
25 23 * 3,5,7,9,11,1 1,3,5 /opt/application/gather_data
C.
25 23 3,5,7,9,11,1 * 1,3,5 /opt/application/gather_data
D.
25 23 * 1,3,5 3,5,7,9,11,1 /opt/application/gather_data
The answer is option C…25 23 * 3,5,7,9,11,1 1,3,5 /opt/application/gather_data
0
0