함수를 활용하기
입력값/
enter a value : _____
출력값/
the number is odd
the number is even
#!/bin/bash
function calcul {
if (( $number%2 == 0 ))
then
echo "even"
else
echo "odd"
fi
}
read -p "ENTER A VALUE : " number;
result=$(calcul);
echo "THE NUMBER IS $result"
'자기발전소 > # Programming' 카테고리의 다른 글
bash Shell Script 개인 프로젝트 2. (0) | 2020.10.12 |
---|---|
bash Shell Script 개인 프로젝트 1. (0) | 2020.10.11 |
if 중첩문 : elif (0) | 2020.06.22 |
C 언어 기초 2 (0) | 2020.05.05 |
C 언어 기초 1 (0) | 2020.05.03 |