How to automatically run a shell script on startup or reboot in Linux
https://sysadminxpert.com/how-to-execute-script-or-command-on-reboot-or-startup-in-linux/
$ crontab –e
##Add your script here….
@reboot /your-script-location/script-name.sh
https://sysadminxpert.com/how-to-execute-script-or-command-on-reboot-or-startup-in-linux/
$ crontab –e
##Add your script here….
@reboot /your-script-location/script-name.sh
Comments
Post a Comment