欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux定时任务出现command not found解决办法

程序员文章站 2022-03-18 11:39:29
 linux定时任务出现command not found解决办法 第一步查看/etc/profile: 第二步修改 /root/.bash_pro...

 linux定时任务出现command not found解决办法

linux定时任务出现command not found解决办法

第一步查看/etc/profile:
linux定时任务出现command not found解决办法

第二步修改 /root/.bash_profile:
linux定时任务出现command not found解决办法
末尾添加命令的路径
linux定时任务出现command not found解决办法

第三步 shell脚本修改:

#!/bin/bash

. /etc/profile
. /root/.bash_profile

脚本中添加内容如下:

linux定时任务出现command not found解决办法

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!