1. 程式人生 > >shell如果文件夾不存在則創建

shell如果文件夾不存在則創建

不存在 color code col pan ash div 文件 shel

#!/bin/bash

build_dir="build"

if [ ! -d "$build_dir" ]; then
        mkdir $build_dir
fi

cd build
cmake ..
make
cd -

shell如果文件夾不存在則創建