1 2 3 4 5 6 7 8 9 10 11
#!/bin/sh echo -n 'checking' $1 '...' if [ -d $1 ] then echo 'ok' else echo ' not exist' mkdir -p $1 fi