blob: 32873adb67d96e4f98efe5aefe8ea0d9cd919b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/bash
# 该脚本用于处理aur安装软件时,由github下载缓慢甚至无法下载的问题
domin=`echo $2 | cut -f3 -d'/'`;
others=`echo $2 | cut -f4- -d'/'`;
case "$domin" in
"github.com")
url="https://ghproxy.com/https://github.com/"$others;
echo "download from github mirror $url";
/usr/bin/aria2c -x 16 -s 16 -k 1M -o $1 $url;
;;
*)
url=$2;
/usr/bin/aria2c -x 16 -s 16 -k 1M -o $1 $url;
;;
esac
|