我在 redhat 上有 .sh 文件来运行 crontab。这个文件的内容
#!/bin/bash
echo "run every 1min..."
我使用以下命令运行它:
[root@localhost ~]# * * * * * /var/www/html/ac/bc/1.sh
bash: anaconda-ks.cfg: command not found
cron 配置规则不是一个 shell 命令(尽管它以一个结尾)。
您必须将其输入到您的 cron 配置中,而不是在命令提示符下输入。
运行crontab -e
以编辑您的 cron 配置。
类型
crontab -e
按我
粘贴行
* * * * * /var/www/html/ac/bc/1.sh
下次保存 crontab
按
esc
类型
:wq!
键入crontab -e
然后键入您的 cron 命令。然后按保存ESC
,然后按wq
..enter
完成。