使用 bash 获取 rar 创建的文件
运行命令
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以做到:
Glob 不限于 DOS 风格的“name.ext”模式。
This should do it:
Globs are not limited to the DOS-style "name.ext" pattern.
您可以捕获并解析
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.