shell中有时候使用mkdir命令创建文件夹会失败,此时需要加上绝对路径,比如:
cur_path=`pwd`
mkdir $cur_path'/your_dir_path'
PS:linux同一目录底下 不允许文件和目录重名