Cron 和 Ruby.. 是否“放置‘系统命令’”做任何事吗?

发布于 2024-10-19 10:10:04 字数 236 浏览 6 评论 0原文

关于 ruby​​ 的 cron 的快速问题,

我有一个正在运行的脚本

puts `tar etc..`

,我正在尝试调试为什么这个脚本没有像它应该的那样压缩文件。

当我手动调用它时它工作得很好,并且我也看到了 tar 输出。 ?

当 put 在 cron 作业中运行时,它实际上会执行任何操作吗

谢谢

丹尼尔

Quick question on cron with ruby,

I have a script which runs

puts `tar etc..`

I'm trying to debug why this script isn't tarring up the files like it should..

It works fine when I invoke it manually and i see the tar output too..

Does puts actually do anything when its run in a cron job?

Thanks

Daniel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还在原地等你 2024-10-26 10:10:04

从 crontab 帮助页面:

如果从 crontab 条目执行的命令未重定向标准输出和标准错误,则应通过实现定义的方法将任何生成的输出或错误邮寄给用户。

我通常为调试 crontab 所做的事情是创建一个记录器:

logfile = File.open('/path/to/log.log', 'rw')
logger = Logger.new(logfile)
logger.debug('something')

From the crontab helping page:

If standard output and standard error are not redirected by commands executed from the crontab entry, any generated output or errors shall be mailed, via an implementation-defined method, to the user.

What I usually do for debugging crontabs is creating a Logger:

logfile = File.open('/path/to/log.log', 'rw')
logger = Logger.new(logfile)
logger.debug('something')
⊕婉儿 2024-10-26 10:10:04

如果你有权限安装gems,你可以尝试minitar,而不是依赖系统tar。

require 'zlib'
require 'archive/tar/minitar'
include Archive::Tar
File.open('test.tar', 'wb') do |tarfile|
    Archive::Tar::Minitar::Writer.open(tarfile) do |tar|
        Dir["file*"].each do |file|
            if File.file?(file) 
             tar.add_file(file, :mode =>0644, :mtime =>Time.now) { |stream, io|
                 stream.write( File.open(file).read )
             }
            end
        end
    end
end

if you have the privilege to install gems, you can try minitar, instead of depending on system tar.

require 'zlib'
require 'archive/tar/minitar'
include Archive::Tar
File.open('test.tar', 'wb') do |tarfile|
    Archive::Tar::Minitar::Writer.open(tarfile) do |tar|
        Dir["file*"].each do |file|
            if File.file?(file) 
             tar.add_file(file, :mode =>0644, :mtime =>Time.now) { |stream, io|
                 stream.write( File.open(file).read )
             }
            end
        end
    end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文