如何在 Abinitio 生产盒上查找旧的恢复文件?

发布于 2024-08-06 21:46:59 字数 66 浏览 3 评论 0原文


任何人都可以阐明在 abinitio 生产盒中查找旧恢复文件的过程


Can any one throw some light on the process of finding old recovery files in abinitio production boxes

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

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

发布评论

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

评论(2

那请放手 2024-08-13 21:46:59

Ab Initio 的 Co>Op 在工作目录中创建恢复文件作为 *jobname***.rec**

因此,如果您知道图形/psets 是从哪里执行的,您可以简单地进行查找:

find . -name \*.rec 

或者如果您有权访问来自旧执行作业的 AbIntio 日志文件,您可以 grep 它们:

ABINITIO: Job may be closed and recovery file deleted by: m_rollback -d <working directory path>/<jobname>.rec

这显示了它创建的恢复文件的名称。

Ab Initio's Co>Op creates recovery files in the working directory as *jobname***.rec**

So if you have an idea where the graphs/psets were executed from, you could simply do a find:

find . -name \*.rec 

Or if you have access to the AbIntio log files from the old executed jobs, you could grep them for this:

ABINITIO: Job may be closed and recovery file deleted by: m_rollback -d <working directory path>/<jobname>.rec

which shows the name of the recovery file it created.

念﹏祤嫣 2024-08-13 21:46:59

您可以尝试以下命令来查找当前及其嵌套目录中超过 60 天的 .rec 文件。

<代码>查找 . -名称\*.rec -mtime +60

You can try the following command to find .rec files older than 60 days in current and its nested directories.

find . -name \*.rec -mtime +60

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文