比较shell脚本中的变量

时间:2013-11-28 20:12:04

标签: shell scripting sh ksh solaris-10

我有一个涉及shell脚本并比较其中的值/变量的项目。我在这里和其他地方看过比较变量,我已经尝试了所有给出的各种例子,但我遇到了一些不像广告那样的东西。操作系统是Solaris10

我创建了以下脚本作为学习体验 -

#!/bin/ksh

stest()
{
if $X = $Y
then echo they're the same
else echo they're notthe same
fi
}


X=a
Y=a

stest

echo completed

我不断得到以下内容的一些变体 -

使用shell sh或ksh -

#./test.sh
./test.sh[2]: a:  not found
completed

使用shell bash -

#./test.sh
./test.sh: line 5: a: command not found
completed

我已尝试将if $X = $Y行括在括号和双括号中,然后我回来了

[a:  not found  

[[a:  not found

如果我将变量X和Y更改为数字“1”,我会得到相同的东西 -

./test.sh[2]: 1:  not found

我试过用单引号,双引号和&向后报价。

感谢任何帮助。

2 个答案:

答案 0 :(得分:10)

if之后,您需要一个shell命令,就像其他任何地方一样。 $X = $Y被解析为shell命令,意味着$X被解释为命令名称(假设变量的值是单个单词)。

您可以使用[命令(也可用test)或[[ … ]]特殊语法来比较两个变量。请注意,括号内部需要空格:括号是shell语法中的单独标记。

if [ "$X" = "$Y" ]; then …

if [[ "$X" = "$Y" ]]; then …

[ … ]适用于任何shell,[[ … ]]仅适用于ksh,bash和zsh。

请注意,您需要围绕变量¹使用双引号。如果省略引号,则变量将拆分为多个单词,并且每个单词都被解释为通配符模式。这不会发生在[[ … ]]内,但=的右侧也会被解释为通配符模式。始终在变量替换周围加上双引号(除非您希望将变量的值用作文件名匹配模式的列表,而不是字符串)。

¹除了$X [[ … ]]语法之外。

答案 1 :(得分:2)

这个KornShell(ksh)脚本应该可以工作:

<强> soExample.ksh

#!/bin/ksh 

#Initialize Variables
X="a"
Y="a"

#Function to create File with Input
#Params: 1}
stest(){
    if [ "${X}" == "${Y}" ]; then
        echo "they're the same"
    else 
        echo "they're not the same"
    fi
}

#-----------
#---Main----
#-----------
echo "Starting: ${PWD}/${0} with Input Parameters: {1: ${1} {2: ${2} {3: ${3}"
stest #function call#
echo "completed"
echo "Exiting: ${PWD}/${0}"

输出

user@foo:/tmp $ ksh soExample.ksh
Starting: /tmp/soExample.ksh with Input Parameters: {1:  {2:  {3:
they're not the same
completed
Exiting: /tmp/soExample.ksh

ksh版本:

user@foo:/tmp $ echo $KSH_VERSION
@(#)MIRBSD KSH R48 2013/08/16