Mainos / Advertisement:
Ero sivun ”Crontab/en” versioiden välillä
Siirry navigaatioon
Siirry hakuun
(Ak: Uusi sivu: Print something every hour) |
(Ak: Uusi sivu: 0 1 * * * * root echo"This prints something every hour.") |
||
Rivi 29: | Rivi 29: | ||
Print something every hour | Print something every hour | ||
− | 0 1 * * * * root echo" | + | 0 1 * * * * root echo"This prints something every hour." |
Käynnistää sh tiedoston | Käynnistää sh tiedoston |
Versio 12. elokuuta 2015 kello 09.58
Crontab is a useful tool to schedule tasks in Linux.
Sisällysluettelo
Scheduling
Scheduling tasks with crontab is pretty simple:
* * * * * command to be run ┬ ┬ ┬ ┬ ┬ │ │ │ │ │ │ │ │ │ └───── weekday (0 - 7) (0 or 7 = sunday) │ │ │ └────────── month (1 - 12) │ │ └─────────────── day (1 - 31) │ └──────────────────── hour (0 - 23) └───────────────────────── minute (0 - 59)
The crontab configuration file is
/etc/crontab
Scheduling examples
Print something every minute
*/1 * * * * echo "This prints every minute."
Print something every hour
0 1 * * * * root echo"This prints something every hour."
Käynnistää sh tiedoston
0 1 * * * * root sh /root/backup.sh
Päivitetään dynaaminen dns joka perjantai ja maanantaina varttia vaille neljä.
45 3 * * 1,5 root curl -D - --user useraccount:password http://www.dy.fi/nic/update?hostname=hostname.dy.fi
Poista sähköposti ilmoitukset käytöstä
Lisää seuraava rivi /etc/crontab tiedostoon
MAILTO=""
Aiheeseen liittyvää
Lähteet
Mainos / Advertisement: