#!/bin/bash
# Author : suxuemin
echo "enter file's url?"
read URL
curl -O $URL
#echo ${$URL##*/}
File=`echo $URL|awk -F/ '{print $NF}'`
unzip $File
mv -f resources/* .
rm -rf resources
#!/bin/bash
# Author : suxuemin
echo "enter file's url?"
read URL
curl -O $URL
#echo ${$URL##*/}
File=`echo $URL|awk -F/ '{print $NF}'`
unzip $File
mv -f resources/* .
rm -rf resources
本文标题:h5资源部署自动化脚本参考
本文链接:https://www.haomeiwen.com/subject/vmdouttx.html
网友评论