Bash에서 숫자 비교

Fumbani Banda 2023년1월30일
  1. 대괄호 []를 사용하여 Bash에서 숫자 비교
  2. 이중 괄호 (( ))를 사용하여 Bash에서 숫자 비교
Bash에서 숫자 비교

이 튜토리얼은 대괄호 []와 이중 괄호 (( ))를 사용하여 bash의 숫자를 비교합니다.

대괄호 []를 사용하여 Bash에서 숫자 비교

비교 연산자는 대괄호 안에 사용해야 합니다.

x=4
y=3

if [ $x -eq $y ];
then
    echo $x and $y are equal
elif [ $x -gt $y ]
then
    echo  $x is greater than $y
else
    echo  $x is less than $y
fi

출력:

4 is greater than 3

이중 괄호 (( ))를 사용하여 Bash에서 숫자 비교

비교 연산자는 이중 괄호 안에 사용해야 합니다.

x=4
y=10

if (( $x < $y ))
then
    echo $x is less than $y
elif (( $x > $y ))
then
    echo $x is greater than $y
else
    echo $x is equal to $y
fi

출력:

4 is less than 10
Fumbani Banda avatar Fumbani Banda avatar

Fumbani is a tech enthusiast. He enjoys writing on Linux and Python as well as contributing to open-source projects.

LinkedIn GitHub