Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
シェル端末の単一行で45日ごとにcronを実行する必要があります。同じ解決策を提供してください
ありがとう
* * */45 * * /temp/command.sh
Linux では動作しますが、hp UNIX では受け入れられません。
別の選択肢があります: 以下のコマンドを毎日実行します:
[ $(( ($(date +%s)/86400) % 45 )) -eq 0 ] && /temp/command.sh