如何在 Abinitio 生产盒上查找旧的恢复文件?
任何人都可以阐明在 abinitio 生产盒中查找旧恢复文件的过程
Can any one throw some light on the process of finding old recovery files in abinitio production boxes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ab Initio 的 Co>Op 在工作目录中创建恢复文件作为 *jobname***.rec**
因此,如果您知道图形/psets 是从哪里执行的,您可以简单地进行查找:
或者如果您有权访问来自旧执行作业的 AbIntio 日志文件,您可以 grep 它们:
这显示了它创建的恢复文件的名称。
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:
Or if you have access to the AbIntio log files from the old executed jobs, you could grep them for this:
which shows the name of the recovery file it created.
您可以尝试以下命令来查找当前及其嵌套目录中超过 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