Pristine Ack-5.5
[Ack-5.5.git] / first / create_dir
1 if ( cd $1 ) 2>/dev/null
2 then
3         :
4 elif mkdir $1 2>/dev/null
5 then
6         :
7 else
8         echo $0: could not create directory $1 1>&2
9         exit 1
10 fi
11 exit 0