Linux安装shellclash by star5o 2023-03-29 (上次更新: 2023-06-06) 约 181 字 - 预计阅读 1 分钟 标准linux设备 使用curl安装: 1 2 #jsdelivrCDN源 export url='https://fastly.jsdelivr.net/gh/juewuy/ShellClash@master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null 或者 1 export url='https://gh.jwsc.eu.org/master' && bash -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null 使用wget安装: 1 2 #Release版本-jsdelivrCDN源 export url='https://fastly.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 路由器设备 使用curl安装: 1 2 #作者私人源 export url='https://gh.jwsc.eu.org/master' && sh -c "$(curl -kfsSl $url/install.sh)" && source /etc/profile &> /dev/null 或 1 2 #jsDelivrCDN源 export url='https://fastly.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 文章作者 star5o 上次更新 2023-06-06 许可协议 CC BY-NC-SA 4.0