본문 바로가기
  • 노션에서 삽질한 내용을 정리하는 블로그
자기발전소/# Programming

Bash_shell script 함수 기초

by iamlucia 2020. 6. 2.

함수를 활용하기 

 

입력값/

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