-
How to add crontab job: Difference between revisions
Jump to navigation
Jump to search
Replace <comments/> with <comment-streams /> |
|||
| Line 32: | Line 32: | ||
<!--Add review function! --> | <!--Add review function! --> | ||
< | <comment-streams /> | ||
<!--Please choose the --> | <!--Please choose the --> | ||
Revision as of 20:06, 26 May 2026
Add crontab job
sudo crontab -e
Choose "1" then press Enter
Add the command line you want to execute at the end of the file that reads like this:
@reboot python3 /home/pi/x-c1/fan.py
PS:
1. @reboot python /home/pi/x-c1/fan.py is a sample command, You MUST to modify it according to your needs.
2. Please make sure that the file path and file name are correct
Save and exit (CTRK + O and ENTER to save it). In nano editor, you do that by hitting CTRL + X, answering Y and hitting Enter when prompted.
Please run 'sudo reboot' to reboot device to enable crontab job.
Remove crontab job
sudo crontab -e
Then remove the command line by yourself.
