在 bash 中移动多个通配符的最有效方法是什么?

发布于 2024-12-04 06:15:07 字数 131 浏览 2 评论 0原文

重写以下内容的最有效方法是什么:

mv *.jpg ~/Pictures && mv *.gif ~/Pictures && mv *.png ~/Pictures

What's the most efficient way to rewrite the following:

mv *.jpg ~/Pictures && mv *.gif ~/Pictures && mv *.png ~/Pictures

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

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

发布评论

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

评论(3

许你一世情深 2024-12-11 06:15:07

您可以分组为一个

mv *.{jpg,gif,png} ~/Pictures

如果您担心文件太多导致参数列表太长,

find -regex ".*\.\(jpg\|gif\|png\)" -print0 | xargs -r0 mv --target='~/Pictures'

You can group into one

mv *.{jpg,gif,png} ~/Pictures

If you are worrying too many files causing argument list too long

find -regex ".*\.\(jpg\|gif\|png\)" -print0 | xargs -r0 mv --target='~/Pictures'
以往的大感动 2024-12-11 06:15:07

高效的?文件名计算的任何效率都可能会被实际复制所淹没,但您可以尝试:

mv *.jpg *.gif *.png ~/Pictures

如果您正在谈论大量文件,则必须小心吹错命令行大小限制,但是您可能会考虑使用 findxargs (我不会通过完整描述来使解决方案复杂化,特别是因为可能有一个回答其他地方的扩展问题SO 网络)。

Efficient? Any efficiencies in the calculations of the file names is likely to be swamped by the actual copying, but you could try:

mv *.jpg *.gif *.png ~/Pictures

If you're talking a lot of files, you'll have to watch out for blowing the command line size limit, but then you'd probably look into using find and xargs (I won't complicate the solution by describing that fully, especially since there's probably an answer to that expanded question elsewhere on the SO network).

绝對不後悔。 2024-12-11 06:15:07
shopt -s nocaseglob
mv *.{jpg,gif,png} ~/Pictures
shopt -s nocaseglob
mv *.{jpg,gif,png} ~/Pictures
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文