noerdman@discuss.tchncs.de to Comic Strips@lemmy.world · 3 months agoBranching Businessdiscuss.tchncs.deimagemessage-square8fedilinkarrow-up10arrow-down10file-text
arrow-up10arrow-down1imageBranching Businessdiscuss.tchncs.denoerdman@discuss.tchncs.de to Comic Strips@lemmy.world · 3 months agomessage-square8fedilinkfile-text
minus-squarefunkless_eck@sh.itjust.workslinkfedilinkarrow-up0·edit-23 months agoa cronjob (from chronos meaning time) is an automated task that occurs when the system clock hits a date and time they are kept in a crontab (cron table) and are written with a number representing minute-hour-monthday-month-weekday-command e.g. 45 23 * * 6 echo hello world would run at the 45th minute of the 23rd hour of the 6th weekday (11:45pm on a Saturday) and print “hello world” to the console it was invented in 1970 for Unix systems (like Jurassic Parks hacking scene), and is still in use today in most servers* *don’t come after me with specifics, trying to ELI5 here.
a cronjob (from chronos meaning time) is an automated task that occurs when the system clock hits a date and time
they are kept in a crontab (cron table) and are written with a number representing minute-hour-monthday-month-weekday-command
e.g.
would run at the 45th minute of the 23rd hour of the 6th weekday (11:45pm on a Saturday) and print “hello world” to the console
it was invented in 1970 for Unix systems (like Jurassic Parks hacking scene), and is still in use today in most servers*
*don’t come after me with specifics, trying to ELI5 here.