xshell入门学习

Posted hy7873

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xshell入门学习相关的知识,希望对你有一定的参考价值。

 

echo "helloworld"

mytest="hello"
num=100
echo $mytest
echo $num

a=3
b=5

 

var=`expr $a + $b`
echo $var


if [ $a == $b ]
then
echo "is equal"
fi
if [ $a != $b ]
then
echo "not equal"
fi

 


if [ $a -eq $b ]
then
echo true
fi
if [ $a -ne $b ]
then
echo false
fi

 

string1="hello"
string2="world"
string3=${string1}${string2}
echo ${#string3}
echo ${string3:1:4}

 

 

array1=(1 2 3 4 5)
array2=(aa bb cc)
echo ${array2[2]}
for data in ${array1[@]}
do
echo ${data}
done


printf "hello world "

if [ $a == $b ]
then
echo "="
else
echo "!="
fi

 

if [ $a == $b ]
then
echo "=="
elif [ $a -gt $b ]
then
echo "-gt"
elif [ $a -lt $b ]
then
echo "-lt"
else
echo "NULL"
fi

 

















































以上是关于xshell入门学习的主要内容,如果未能解决你的问题,请参考以下文章

新手入门Linux的步骤

这样学习Linux,楼下王大爷都已经入门了,你还不来?

这样学习Linux,楼下王大爷都已经入门了,你还不来?

Linux运维应该怎么去学习?

运维工程师需要学习哪些课程

学习Linux的课程需要了解包含哪些内容