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.
サーバーの 1 つには、約 20 ~ 25 の異なる cron ジョブがスケジュールされています。通常、定期的に cron ジョブをリポジトリ内のファイルにチェックインします。crontab -l > cron.jobs
crontab -l > cron.jobs
(OS およびデプロイされたコード ベースに関して) 前のサーバーのレプリカである新しいサーバーを起動する際に、有効な cron ジョブを含むファイルから新しいサーバーの cron ジョブを取得することは可能ですか?
コマンドの唯一の引数としてファイル名を指定するとcrontab、現在の crontab を置き換えるために使用されます。
crontab
crontab -l > cron.jobs crontab cron.jobs
または、stdin を介してファイルをフィードします。
crontab < cron.jobs