컴퓨터/Linux2011. 8. 25. 07:09
if4.sh
#!/bin/sh
fname=/etc/init.d/httpd
if [ -f $fname ]
then
 head -5 $fname
else
 echo "웹 서버가 설치 되지 않았습니다."
fi
exit 0



Posted by CIY