Para configurar a tarefa /root/bin/tarefa a ser executada pelo cron, de meia em meia hora, toda segunda, quarta e sexta-feiras, deve-se configurar a linha de agendamento da tarefa com:
00,30 * * * 1,3,5 /root/bin/tarefa.
00,30 * * * 2,4,6 /root/bin/tarefa.
30 * * * 1,3,5 /root/bin/tarefa.
30 * * * 2,4,6 /root/bin/tarefa.
30 * * * 2-4-6 /root/bin/tarefa.