查明某个应用程序/命令在 Linux 上是否可用?

发布于 2024-12-11 03:41:00 字数 117 浏览 0 评论 0原文

我需要知道是否 xclip (该命令已安装),因为如果它可用,我想通过 system() 函数向它发送命令,否则我想显示一条消息。有没有办法知道该命令是否存在?

谢谢,

我的意思是可编程的

I need to know if xclip (the command is installed) because if it is available I want to send a command to it via the system() function, otherwise I want to display a message. Is there a way to know if the command exists?

Thanks

I mean programably

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

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

发布评论

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

评论(2

神爱温柔 2024-12-18 03:41:00

对于像 xclip 这样的东西,你可以这样做:

if (system("xclip")==-1) // Check for command execution failed
  ...

并检查返回值。 -1 表示未找到 xclip。或者,您可以执行类似以下操作:

if (system("which xclip")==0) // Check if command can be found
  ...

并检查是否返回 0,表示没有失败的参数。

For something like xclip, you can just do:

if (system("xclip")==-1) // Check for command execution failed
  ...

and check the return value. A -1 indicates that xclip was not found. Or, you can execute something like:

if (system("which xclip")==0) // Check if command can be found
  ...

and check for a 0 return, indicating no failed arguments.

一个人的旅程 2024-12-18 03:41:00

which -s 命令可以接受命令的名称,如果可以找到它,则将 $? 设置为 0,否则设置为 1

The which -s command can take in the name of a command and set $? to 0 if it could find it, 1 otherwise

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