如何检查命令是否可以执行?

发布于 2024-09-09 10:19:40 字数 333 浏览 3 评论 0原文

我有一个脚本将向用户显示一些压缩选项(gzip、zip 和 bzip)。因为这意味着可以在 Linux 和 Linux 上运行。 Windows 和 Zlib 库将不可用我必须使用 Unix 命令压缩任何文件。当然,如果脚本在 Windows 上运行,它可能不会有任何好的命令行压缩工具,因此应用程序不应该向用户显示任何选择。

所以,我想知道的是如何检查命令行工具是否存在。我可以检查可执行文件是否存在,但它根本不可靠(例如,在我的桌面上我使用 Gentoo Linux,zip 命令位于 /usr/bin; 另一方面,在我的服务器上它位于 /bin 上)。

I have an script that will show some compress options to the user (gzip, zip, and bzip). Since this is meant to run on both Linux & Windows and the Zlib library won't be available I have to compress any files by using Unix commands. Of course, if the script runs on Windows it probably won't have any of the nice command line compress tools, and thus the app should not show any choices to the user.

So, what I want to know is how to check whether the command line tool exists. I could just check whether the executable file exists, but it's not reliable at all (for instance, on my desktop I use Gentoo Linux and the zip command lives on /usr/bin; on the other hand, on my server it lives on /bin).

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

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

发布评论

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

评论(3

温柔戏命师 2024-09-16 10:19:40

使用 which 命令。例如,使用 which zip 来查找 zip 所在的位置以及它是否存在。它是 Linux/Mac 的标准配置,Windows 也可用。

Use the which command. For example, use which zip to find out where zip lives and if it exists. It comes standard in Linux/Mac, and is available also for Windows.

梦年海沫深 2024-09-16 10:19:40

您可以只为 Windows 编译 zlib 并将您的程序链接到它...否则您将不得不将一些程序名称硬编码到您的应用程序中,并手动解析用户的 PATH 变量以查找它们的安装位置。

或者,如果你想使用库,你可以使用 glib 中的这个函数:
http: //www.gtk.org/api/2.6/glib/glib-Miscellaneous-Utility-Functions.html#g-find-program-in-path

但是如果您在应用程序中使用 glib,那么指出为 Windows 构建 zlib 可能更容易。

You could just compile zlib for windows and link your program to it... otherwise you'll have to live with hardcoding a few program names into your app, and manually parse the user's PATH variable to find where they are installed.

Or, if you want to use a library, you can use this function from glib:
http://www.gtk.org/api/2.6/glib/glib-Miscellaneous-Utility-Functions.html#g-find-program-in-path

But if you're using glib in your app, at that point it's probably easier to just build zlib for windows.

居里长安 2024-09-16 10:19:40

Zlib 可以安装在上述所有操作系统上。

如果你看一下手册...

www.php.net/manual/en/zlib.installation.php

它说“PHP 4.3.0 提供了对 Windows 上 zlib 的内置支持”。

Zlib 默认情况下未启用,您必须在 php.ini 中手动启用它。要检查是否启用了 zlib 或任何其他模块,请参阅本教程:

www.wlscripting.com/tutorial/47

Zlib can be installed on all of the above operating systems.

If you look at the manual...

www.php.net/manual/en/zlib.installation.php

It says " Built-in support for zlib on Windows is available with PHP 4.3.0."

Zlib is not enabled by default, you have to enable it manually in php.ini. In order to check if zlib or any other module is enabled see this tutorial:

www.wlscripting.com/tutorial/47

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