终端上通配符的优雅降级

发布于 2024-08-08 13:39:18 字数 351 浏览 8 评论 0原文

每当全局模式匹配失败时,它就会停止整个作业。例如,

$ mv *.jpg *.png folder1 && blahblah
mv: cannot stat `*.jpg': No such file or directory

*.png 不会移动到folder1,并且blahblah 不会运行。

下面的脚本仅适用于 .[Az]* 和 * 都成功的情况。

#!/bin/bash
cd $1
du -sk .[A-z]* *| sort -rn | head

如何使通配符优雅地失败,最多只显示警告,但从不停止工作?

Whenever glob pattern match fails, it stops the whole job. For instance,

$ mv *.jpg *.png folder1 && blahblah
mv: cannot stat `*.jpg': No such file or directory

*.png isn't moved to folder1 and blahblah is not run.

And the script below works only for the case when both .[A-z]* and * succeed.

#!/bin/bash
cd $1
du -sk .[A-z]* *| sort -rn | head

How do I make globbing fail gracefully, at most only displaying warnings, but never stopping the job?

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

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

发布评论

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

评论(2

沉溺在你眼里的海 2024-08-15 13:39:18

在 Bash 中,shopt -s nullglob 将允许失败的 glob 扩展为无任何错误。

In Bash, shopt -s nullglob will allow a failed glob to expand to nothing with no errors.

听你说爱我 2024-08-15 13:39:18

然后使用循环。吻

for files in jpg png
do
  mv *.${files} /destination 2>/dev/null && do_something 
done

then use a loop. KISS

for files in jpg png
do
  mv *.${files} /destination 2>/dev/null && do_something 
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文