I am trying to execute a script on a server. When I do crontab -l, I get @reboot cd my_project_path; ./start.shon the terminal.
However, when I do @reboot cd my_project_path; ./start.sh, I get -bash: @reboot: command not found. How to enable reboot command in bash? Sorry if this is a very simple question, but I'm not a master in bash.
source
share