gpt4 book ai didi

linux - sh 中的小型安装脚本

转载 作者:太空宇宙 更新时间:2023-11-04 09:54:48 24 4
gpt4 key购买 nike

我用 sh 编写了一个小的安装程序。

代码:

#!/bin/sh

echo $ 1

if [ "$1" ! = "install"];

then

echo "Why not install?

else

echo "Installing ..."

fi

并抛出一个错误:

安装

[: 10: 缺失]

正在安装...

编辑:将不合作的答案回滚到问题中。

最佳答案

if [$1 != "install"];

应该是

if [ "$1" != "install" ];

关于linux - sh 中的小型安装脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6772081/

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