gpt4 book ai didi

linux - 如何在 Linux shell 中使用 if else 设置 var 值

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

如何在 Linux shell 中使用 if-else 设置 var 值?

我是linux初学者。我想在 shell 中根据条件设置 var 值。怎么做?
下面的代码是php代码;我不知道如何在linux中编写。

#!bin/bash
# how to use if else to set var value in linux shell
if($x==1){
$y="hello"
}
if($x==2){
$y="world"
}
if($x==3){
$y="good"
}

echo $y

最佳答案

if else 在 bash 中 http://www.thegeekstuff.com/2010/06/bash-if-statement-examples/

#!/bin/bash
count=100
if [ $count -eq 100 ]
then
echo "Count is 100"
fi

在 bash 中设置 var http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO-5.html

#!/bin/bash          
STR="Hello World!"
echo $STR

关于linux - 如何在 Linux shell 中使用 if else 设置 var 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24298475/

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