我有一个名为的脚本run.sh
:
#!/bin/bash
cd /root/yowsup-master/src/
./yowsup-cli --interactive no --wait --autoack --config config.example
该脚本执行另一个脚本。
我尝试添加我的脚本路径/etc/rc.local
但似乎不起作用。
我还将其添加到启动应用程序中卡利Linux它也不起作用。
我想让我的程序run.sh
在计算机启动时自动在后台执行。
答案1
简单。使用这样的 crontab 条目:
@reboot /replace/with/the/path/to/run.sh
要在您的系统上使用它,最好的方法是永远不要/etc/rc.local
手动编辑,而只需运行crontab -e
即可编辑您的 crontab 条目。更多详细信息在这个网站上。