我的cron:
45 10 * * * source /home/ThinkCode/Test/hello.sh
hello.sh:
#!/bin/bash echo "helloworld"
它发送给我的错误:
/bin/sh: source: not found
我究竟做错了什么?它是配置/环境具体的,所以谷歌没有帮助太多!谢谢..
真正的sh没有源,只有..将cron中的shell更改为bash或使用.代替.
原文链接:https://www.f2er.com/bash/386649.html