将一堆 zip 解压到各自的目录中
我有一堆 zip 文件,想在 Linux 中解压到它们自己的目录中。例如:
a1.zip a2.zip b1.zip b2.zip
将被解压缩为:
a1 a2 b1 分别为b2
。有什么简单的方法可以做到这一点吗?
I have a bunch of zip files I want to unzip in Linux into their own directory. For example:
a1.zip
a2.zip
b1.zip
b2.zip
would be unzipped into:
a1
a2
b1
b2
respectively. Is there any easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
添加引号以处理文件名中的空格。
Add quotes to handle spaces in filename.
很抱歉为旧帖子做出贡献,这对我来说适用于命令行,当我了解到它时,它是我的救星
嘿,急!
Sorry for contributing to an old post, this works in cmd line for me and it was a life saver when I learnt about it
Hey presto!