将一堆 zip 解压到各自的目录中

发布于 2024-08-25 11:42:12 字数 150 浏览 4 评论 0原文

我有一堆 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 技术交流群。

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

发布评论

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

评论(4

梦里人 2024-09-01 11:42:12

添加引号以处理文件名中的空格。

for file in *.zip
do
  unzip -d "${file%.zip}" "$file"
done

Add quotes to handle spaces in filename.

for file in *.zip
do
  unzip -d "${file%.zip}" "$file"
done
人事已非 2024-09-01 11:42:12
for zipfile in *.zip; do
    exdir="${zipfile%.zip}"
    mkdir "$exdir"
    unzip -d "$exdir" "$zipfile"
done
for zipfile in *.zip; do
    exdir="${zipfile%.zip}"
    mkdir "$exdir"
    unzip -d "$exdir" "$zipfile"
done
思念绕指尖 2024-09-01 11:42:12
for x in $(ls *.zip); do
 dir=${x%%.zip}
 mkdir $dir
 unzip -d $dir $x
done
for x in $(ls *.zip); do
 dir=${x%%.zip}
 mkdir $dir
 unzip -d $dir $x
done
久光 2024-09-01 11:42:12

很抱歉为旧帖子做出贡献,这对我来说适用于命令行,当我了解到它时,它是我的救星

for file in $(ls *.zip); do unzip $file -d $(echo $file | cut -d . -f 1); done

嘿,急!

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

for file in $(ls *.zip); do unzip $file -d $(echo $file | cut -d . -f 1); done

Hey presto!

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