"Bash if"의 두 판 사이의 차이

19번째 줄: 19번째 줄:


==같이 보기==
==같이 보기==
* [[if]]
* [[Bash case]]
* [[Bash case]]
* [[Bash 숫자 비교]]
* [[Bash 숫자 비교]]
* [[if]]
* [[쉘 프로그래밍 제어문]]


[[분류: Bash]]
[[분류: Bash]]

2018년 12월 10일 (월) 01:40 판

1 개요

Bash if
He="John Smith"
if [ "$He" = "John Smith" ]; then
	echo "He is John Smith"
else
	echo "He is not John Smith"
fi
# He is John Smith
He="Jane Doe"
if [ "$He" != "John Smith" ]; then
	echo "He is not John Smith"
fi
# He is not John Smith

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}