cron ジョブを週に 2 回実行するように設定するにはどうすればよいですか?
毎週cronジョブを設定する方法を知っています:
0 0 * * 0
How about the following:
0 0 * * 1,4
This sets the day of week to Monday (1) and Thursday (4). You can choose any values 0–7 (both 0 and 7 are Sunday).
For a more readable crontab, you can also use names:
0 0 * * MON,THU
See also: How to instruct cron to execute a job every second week?