本文主要是介绍linux shell 记录log 并 自启动的方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
记录log
run.sh :
#!/bin/bashecho -e `date '+%F %T'` "---- 程序开始 ! -----" >> test.logpython -V >> test.log./run_infer >> test.log
自启动
cd /etc/systemd/system/
sudo vim test.service
文件内容是:
[Unit]
Description = boot infer[Service]
WorkingDirectory=/home/nvidia/VP_TM_0.1.3
ExecStart = /home/nvidia/VP_TM_0.1.3/run.sh[Install]
WantedBy = default.target
最后执行
systemctl daemon-reload
systemctl enable test.service
这篇关于linux shell 记录log 并 自启动的方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!