如何在启动后运行命令(脚本)?

如何在启动后运行命令(脚本)?

我想在启动后运行一个简单的命令。

cd /mypath
# then
./mycommand

我该怎么做?

答案1

两种解决方案:

第一个是将命令的完整路径放入/etc/rc.local

/mypath/mycommand

或者,使用 cron 方式:

crontab -e

@reboot cd /mypath;./mycommand

来自 crontab 手册:

 @reboot        Run once, at startup.

相关内容