预定的Python程序在哪里“打印”?
如果我安排 print "Hello World!";
使用 crontab 每小时运行一次,那么 Hello World! 会在哪里运行?被打印?有日志文件吗? 如果我使用 Java 或 C 而不是 Python,会有什么不同吗?
谢谢!
If I schedule print "Hello World!";
to run every hour with crontab, where will Hello World! be printed? Is there a log file?
If I do it with Java or C instead of Python, will it make any difference?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们将被发送到 crontab 顶部定义的电子邮件地址,或者默认发送到 crontab 的所有者。有关更多详细信息,请参阅
crontab(5)
手册页。They will be sent to the email address defined at the top of the crontab, or to the crontab's owner by default. See the
crontab(5)
man page for more details.