[질문]이 쉘스크립트가 왜 안될까요?
글쓴이: keston / 작성시간: 토, 2004/02/07 - 6:13오후
bash --version
GNU bash, version 2.05b.0(1)-release (i386-redhat-linux-gnu)
Copyright (C) 2002 Free Software Foundation, Inc.
cat /etc/redhat-release
Red Hat Linux release 9 (Shrike)
#!/bin/sh if [ `grep 9 /etc/redhat-release` ] then echo "Redhat9" else echo "no" fi
./test.sh
test.sh: line 2: [: too many arguments
no
Forums:
Re: [질문]이 쉘스크립트가 왜 안될까요?
이부분의 리턴값이 많으니까 그런것이죠
echo `grep 9 /etc/redhat-release` 해보세요
./test.sh
test.sh: line 2: [: too many arguments
no
------------------------------------------------------------------------------------------------
Life is in 다즐링
이렇게 바꿔 보세요..
댓글 달기