One approach is to add an @reboot cron task:
- Running
crontab -e
will allow you to edit your cron. - Adding a line like this to it:
@reboot /path/to/script
will execute that script once your computer boots up.
One approach is to add an @reboot cron task:
crontab -e
will allow you to edit your cron.@reboot /path/to/script
will execute that script once your computer boots up.
Recent Comments