gpt4 book ai didi

linux - 如何在 Linux 中验证计划运行

转载 作者:太空宇宙 更新时间:2023-11-04 10:07:04 25 4
gpt4 key购买 nike

我正在关注 this post 。我想在退出 ssh 后在后台运行一个 python 脚本,并将输出存储到特定文件中。即,我希望使用以下 bash 命令:

nohup python3 main.py --dataset CorrSR/testTraining/small --train --input_height=256 --output_height=256 --epoch=2 | at 1:25 PM Mon > logs/background_run_small.txt &

我不确定命令的顺序。 | 是在 > 之前吗?该命令运行没有错误,但会立即使用

打开一个进程

4285 pts/5 Sl 0:02 /usr/bin/python3 -u /usr/lib/python3/dist-packages/spyderlib/widgets/externalshell/start_ipython_kernel.p

并且输出文件会立即创建。那是正常的吗?我怎么知道程序等待指定的时间运行?

最佳答案

您的命令行会立即执行 main.py

你可能想要的是:

echo 'nohup python3 main.py --dataset CorrSR/testTraining/small --train --input_height=256 --output_height=256  --epoch=2 > logs/background_run_small.txt' | at "1:25 PM Mon"

关于linux - 如何在 Linux 中验证计划运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51820254/

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