使用 bash 获取 rar 创建的文件

发布于 2024-10-03 05:38:53 字数 222 浏览 3 评论 0原文

运行命令

rar a -m0 -v100m rarname.rar *.*

我正在使用 bash 脚本在某些文件上 。我知道我指定了 rarname,但由于 -v 选项设置了 rar 的大小限制,此命令可以生成许多名为 rarname.part1.rar、rarname.part2.rar 等的 rars。

最好的方法是什么获取创建的文件列表?

I'm running the command

rar a -m0 -v100m rarname.rar *.*

On some files with a bash script. I know I specified the rarname, but because of the -v option which sets a size limit to the rar, this command can make lots of rars named rarname.part1.rar, rarname.part2.rar, etc.

What is the best way to get the list of files created?

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

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

发布评论

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

评论(2

情泪▽动烟 2024-10-10 05:38:53

这应该可以做到:

rarname.*.rar

Glob 不限于 DOS 风格的“name.ext”模式。

This should do it:

rarname.*.rar

Globs are not limited to the DOS-style "name.ext" pattern.

疑心病 2024-10-10 05:38:53

您可以捕获并解析 rar 命令的输出,或者在临时目录中创建 rar 文件,然后在其中处理文件。

我推荐后面的选择。

You can either capture and parse the output from the rar command or create the rar'ed files in a temporary directory, and then process the files there.

I'd recommend the later option.

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