123456789101112 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # Blog: http://blog.linuxeye.com
- Download_src()
- {
- [ -s "${src_url##*/}" ] && echo "${src_url##*/} found" || wget -c --no-check-certificate $src_url
- if [ ! -e "${src_url##*/}" ];then
- echo -e "\033[31m${src_url##*/} download failed, Please contact the author! \033[0m"
- kill -9 $$
- fi
- }
|