gpt4 book ai didi

python - 在 crontab 中设置路径的正确方法是什么?

转载 作者:行者123 更新时间:2023-12-01 01:49:58 25 4
gpt4 key购买 nike

我是 crontab 新手,遇到了一些麻烦。

我知道设置是

* * * * *  command to execute 

* 分别代表分钟、小时、月份、月份、星期几

通常,要在终端中运行我的代码

source /Users/mmmm/PycharmProjects/kt/venv/bin/activate
cd tests
python test1.py

但我不知道如何在 crontab 上设置它。正确的做法是什么?

最佳答案

您可以创建 bash 脚本。我们将其命名为 script.sh

script.sh 中,您将拥有

源/Users/mmmm/PycharmProjects/kt/venv/bin/activate
光盘测试
python test1.py

确保使用 chmod +x script.sh 使脚本可执行!

然后您可以使用

将该脚本添加到 crontab

* * * * */path/to/script.sh

这将激活 venv,cd 进入测试并运行 test1.py,同时仅将 bash 脚本放入 cron 中。

关于python - 在 crontab 中设置路径的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50823693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com