如果我们使用 crontab 来定时执行脚本,无法执行,但是如果直接通过命令(如:./test.sh)又可以正常执行,这主要是因为无法读取环境变量的原因。 解决方法: 1、所有命令需要写成绝对路径形式,如:/usr/local/bin/docker。 2、在 shell 脚本开头使用以下代码: 1 2 3 4 #!/bin/sh . /etc/profile . ~/.bash_profi...