shell 조건문
OS/리눅스 & 유닉스 2012. 2. 11. 16:511) 단일 조건문
# Case 1
if [ -z $ans ]
then
fiecho "blank"
# Case 2
if [ -z $ans ] || [ $ans = "N" ]
then
echo "No"
fi
# Case 3
if [ -z $ans ] || ([ $ans != "Y" ] && [ $ans != "y" ])
then
echo "No"fi
2) if ~ else
if [ 조건문 ]
then
명령어...
else
명령어...
fi
3) if ~ elif ~ else
if [ 조건문 ]
then
elif [ 조건문 ]
then
else
fi
'OS > 리눅스 & 유닉스' 카테고리의 다른 글
grep 명령어 (0) | 2012.02.13 |
---|---|
grep, egrep, fgrep & 정규식 (0) | 2012.02.13 |
shell 조건 연산자 (0) | 2012.02.11 |
chmod suid (0) | 2012.02.11 |
egrep 정규식 (0) | 2012.02.11 |