Self-Improvement
6) 쉘 스크립트 조건문 : IF 본문
#vi execfile.sh
#chmod 755 execfile.sh
#execfile.sh /test/test.exe
2.파일이 디렉터리인지 아닌지 검사하기
#vi dir.sh
3.if 구문을 사용한 인자 처리 예제
#vi filesize.sh
#chmod 755 filesize.sh
#filesize.sh
#filesize.sh /etc/passwd
4.if구문에 명령어 사용
#vi findstring.sh (특정 파일의 패턴검색)
#chmod 755 findstring.sh
#findstring.sh root /etc/passwd
※if에서 명령어구문은 test을 안쓴다.
5.변수의 NULL 값 점검 종류
if [ "$VAR" = "" ] ; then
or
if [ ! "$VAR" ] ; then
or
if [ -z "$VAR" ] ; then
or
if [ "X${VAR}" != "X" ] ; then
'프로그래밍 > Shell' 카테고리의 다른 글
8) 쉘 스크립트 반복문 : for (0) | 2018.10.21 |
---|---|
7) 쉘 스크립트 조건문 : Case 구문 (0) | 2018.10.21 |
5) 쉘 스크립트 연산자 및 조건문 test CMD (0) | 2018.10.21 |
4) 쉘 스크립트 echo, read (0) | 2018.10.21 |
3) 쉘 스크립트 실행 방법, 편리 설정 (0) | 2018.10.21 |