gpt4 book ai didi

Bash, ... 检查程序是否安装,使用 bash 脚本

转载 作者:行者123 更新时间:2023-11-29 09:11:03 24 4
gpt4 key购买 nike

<分区>

我正在尝试创建一个小脚本来检查是否安装了程序。我正在尝试使用 tmux,...

`tmux --help` | grep "tmux: command not found" &> /dev/null
if [ $? == 1 ]; then
echo "tmux is not installed"
exit
fi

安装 tmux 后,我得到:

usage: tmux [-2lquvV] [-c shell-command] [-f file] [-L socket-name]
[-S socket-path] [command [flags]]
tmux is not installed

如果没有安装程序,则显示字符串“tmux: command not found”。这可以解释为什么我 grep tmux --help 命令的输出。检查是否安装了 tmux 的正确方法是什么?

脚本总是回显“tmux is not installed”。即使我安装了 tmux。有什么问题吗?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com