You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
341 B
Bash
11 lines
341 B
Bash
5 years ago
|
#/bin/bash
|
||
|
echo "项目初始化"
|
||
|
mkdir Runtime
|
||
|
mkdir Uploads
|
||
|
arr=("App" "AppPlist" "Attachment" "Download" "Editor" "excel" "GamePack" "GamePlist" "Ios" "IosGamePack" "Material" "Picture" "Plist" "SourcePlist" "SourcePack" "TmpGamePack" "Water")
|
||
|
for var in ${arr[@]}
|
||
|
do
|
||
|
echo "生成目录:"Uploads/$var
|
||
|
mkdir Uploads/$var
|
||
|
done
|