如何通过 Bash 脚本检查 Linux 中是否安装了 rar?
如何通过 Bash 脚本检查 Linux 中是否安装了 rar unrar ?
How to check rar unrar installed or not in Linux via Bash Script ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在脚本中使用 $RAR 或 $UNRAR... 执行任何操作。如果它们丢失,则脚本将回显该命令丢失。
return 127
确保如果您使用条件语句,则在丢失文件的情况下它将失败。Use $RAR or $UNRAR in your script... to do whatever. if they are missing then the script will echo that the command is missing
The
return 127
makes sure that if you use a condition statement, it will fail in case of missing files.如果您可以尝试
,那当然只会在
$PATH
中检测,而不是系统上的任何位置。If you can try
That will, of course, only detect in
$PATH
, not anywhere on the system.还有另一个解决方案:
Yet another solution :
灵感来自 Michael Krelin - 黑客的帖子和 python 的 and-or 表达式,你可以输入以下内容:
Inspiration get from Michael Krelin - hacker's post and python's and-or expression, you can just type this: