shell脚本git拉取代码并编译打包发送到部署服务器
#!/bin/bashstty erase ^Hread -e -p 'Please enter the code place directory:' FOLDERwhile [ -z $FOLDER ] do read -e -p 'file directory is empty, enter a new one:' FOLDERdoneif [ ! -d $FOLDER ] then mkdir $FOLDER echo


