You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
371 B
6 lines
371 B
#!/bin/sh
|
|
sudo su -
|
|
# NOTE: this works only since user is a field on Ubuntu (on some GNU/Linux systems it is not, which is implied by omission at http://www.adminschoice.com/crontab-quick-reference)
|
|
# Minute, Hour, Day of Month, Month (1 to 12), Day of Week
|
|
# m h dom mon dow user command
|
|
echo "* * * * * root /home/owner/minetest/utils/chunkymap-cronjob" >> /etc/crontab
|