'os/UNIX_LINUX'에 해당되는 글 238건

  1. 2012.07.23 SHELL을 이용하여 파일 존재여부 디렉토리 존재 여부 체크

반응형

 


#!/bin/ksh

if [ -f test_f ]; then
 echo "file test_f exist"
else
 echo "file test_f not_exist"
fi

if [ -d test_d ]; then
 echo "directory test_d exist"
else
 echo "directory test_d not_exist"
fi

 

반응형
Posted by 공간사랑
,