1234567891011121314151617 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://blog.linuxeye.com
- #
- # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+
- #
- # Project home page:
- # http://oneinstack.com
- # https://github.com/lj2007331/oneinstack
- Download_src() {
- [ -s "${src_url##*/}" ] && echo "[${CMSG}${src_url##*/}${CEND}] found" || wget -c --no-check-certificate $src_url
- if [ ! -e "${src_url##*/}" ];then
- echo "${CFAILURE}${src_url##*/} download failed, Please contact the author! ${CEND}"
- kill -9 $$
- fi
- }
|