在没有新实例的应用程序中使用 shell 脚本打开文件?

发布于 2025-01-17 06:37:18 字数 1549 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

纵性 2025-01-24 06:37:18

我无法找到有关您正在使用的应用程序的任何信息。

另一种方法是使用 imagemagicks convert 工具:

convert in.jpg out.webp

为了方便起见,您还可以使用小包装脚本来转换文件,同时保留原始文件名:

#!/bin/bash
name="${1%.*}"  #get name from command line argument
convert "$1" "$name".webp  

并按如下方式运行:

./cwepb foo.jpg

I was unable to find any information about the application you are using.

An alternative approach would be to use imagemagicks convert tool:

convert in.jpg out.webp

For convenience you could also use a small wrapper script to convert a file while keeping the original filename:

#!/bin/bash
name="${1%.*}"  #get name from command line argument
convert "$1" "$name".webp  

And run it as following:

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