Answers for "a script to automatically run a program on linux"

3

how to make a script run on boot linux

crontab -e
@reboot  /home/user/test.sh
Posted by: Guest on December-23-2020
5

how to run script in linux at startup

crontab -e	// To make a crontab file
@reboot *your shell command here*	// to run at startup
Posted by: Guest on June-02-2021

Code answers related to "a script to automatically run a program on linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language