From 251a5614fb1d69a2946ae80f68b1b91409b11af7 Mon Sep 17 00:00:00 2001 From: juewuy Date: Sun, 30 Jan 2022 15:23:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AE=89=E8=A3=85=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 ++++-- README_CN.md | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 91515ba..ddf431f 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,12 @@ opkg update && opkg install curl ##### ~Use curl:
```Shell -#By github-CDN +#by github-CDN export url='https://raw.githubusercontent.com/juewuy/ShellClash/master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null -#By jsdelivrCDN +#by jsdelivrCDN export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null +#by myserver +export url='http://shellclash.ga/' && wget -q -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null ``` ##### ~Use wget:
diff --git a/README_CN.md b/README_CN.md index b0cf0bf..078d256 100644 --- a/README_CN.md +++ b/README_CN.md @@ -51,19 +51,21 @@ opkg update && opkg install curl #如已安装请忽略 export url='https://raw.githubusercontent.com/juewuy/ShellClash/master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null #jsdelivrCDN源 export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null +#作者私人http源 +export url='http://shellclash.ga/' && wget -q -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null ``` ~**使用wget安装**:
```sh -#Release版本-jsdelivrCDN源 +#jsdelivrCDN源 export url='https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master' && wget -q --no-check-certificate -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null ``` ~**使用低版本wget(提示不支持https)安装**:
```sh -#Test版本-作者私人http源 +#作者私人http源 export url='http://shellclash.ga/' && wget -q -O /tmp/install.sh $url/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null ```