shell创建目录

创建目录(多级目录mkdir -p)
if [ ! -d "/dir" ]; then
    mkdir /dir
fi

你可能感兴趣的:(linux,linux)