본문 바로가기

LINUX/Shell Script

08. AND, OR 연산자

AND , OR 연산자
 
&& , || 을 그냥 사용하면 된다.
 
# file_check.sh
 
#!/bin/sh
 
fname=/lib/systemd/system/cron.service
 
if [ -e $fname && -s $fname ]
then
    head -5 $fname
else
    echo "cron 서버가 설치되지 않았습니다."
fi
exit 0
 

'LINUX > Shell Script' 카테고리의 다른 글

10. 비교  (0) 2020.01.31
09. 함수  (0) 2020.01.31
07. while 반복문  (0) 2020.01.31
06. for 반복문  (0) 2020.01.31
05. case 조건문  (0) 2020.01.31