更自由地使用 各种一键脚本(未裁剪)
像我这样的小白们, 入门的第一步, 最常见的就是使用各种一键脚本先实现自己的基本需求.
接着随着时间的推移, 我们慢慢会觉得这些一键脚本有各种各样"不爽"的地方.
那么, 我们可以利用linux的文本修改工具sed, 达到查找替换, 添加, 删除等效果.
- 极简一键脚本带参数使用时, 跳过确认参数的步骤
bash <(curl -L https://github.com/crazypeace/xray-vless-reality/raw/main/install.sh | sed '/pause()\s*{/a return') 4 8443
原理解释 https://zelikk.blogspot.com/2024/10/cp-bash-skip-pause.html
- 强行重装233boy的sing-box脚本
bash <(wget -qO- -o- https://github.com/233boy/sing-box/raw/main/install.sh | sed '/err()\s*{/a return')
强行重装233boy的v2ray脚本
bash <(wget -qO- -o- https://git.io/v2ray.sh | sed '/err()\s*{/a return')
强行重装233boy的xray脚本
bash <(wget -qO- -o- https://github.com/233boy/Xray/raw/main/install.sh | sed '/err()\s*{/a return')
原理解释 https://zelikk.blogspot.com/2024/12/233boy-sing-box-install-err-skip.html
- 233boy的sing-box脚本安装完成后, 修改配置时强行跳过验证域名DNS解析报错
安装完后, 先执行
find /etc/sing-box/sh -type f -name "*.sh" -exec sed -i '/err()\s*{/a return' {} +
再按正常操作修改配置.
原理解释 https://zelikk.blogspot.com/2024/10/233boy-sing-box-skip-err.html
- 跳过kejilion脚本同意条款, 不上传VPS信息
bash <(curl -sS https://raw.githubusercontent.com/kejilion/sh/main/kejilion.sh | sed '/UserLicenseAgreement()\s*{/a return' | sed '/send_stats()\s*{/a return')
如果你喜欢以 k 快捷方式来进行日常使用, 那么你可以这样安装
curl -sS -O https://raw.githubusercontent.com/kejilion/sh/main/kejilion.sh
chmod +x kejilion.sh
sed -i -e '/UserLicenseAgreement()\s*{/a return' -e '/send_stats()\s*{/a return' ./kejilion.sh
./kejilion.sh
原理解释 https://zelikk.blogspot.com/2024/09/kejilion-send-stats-return.html
- 解密rwkgyg-tuic脚本
wget -N https://gitlab.com/rwkgyg/tuic-yg/raw/main/tuic.sh
bash <(curl -L https://gitlab.com/crazypeace/tuic-yg-unpack/-/raw/main/unpack.sh) tuic.sh
解密rwkgyg-naiveproxy脚本
wget -N https://gitlab.com/rwkgyg/naiveproxy-yg/raw/main/naiveproxy.sh
bash <(curl -L https://gitlab.com/crazypeace/tuic-yg-unpack/-/raw/main/unpack.sh) naiveproxy.sh
原理解释 https://zelikk.blogspot.com/2023/07/tui-yg-unpack.html
- 解密rwkgyg-CFwarp脚本
wget -qN https://gitlab.com/rwkgyg/CFwarp/raw/main/1CFwarp.sh
bash <(curl -L https://gitlab.com/crazypeace/cfwarp-unpack/-/raw/main/unpack.sh) 1CFwarp.sh
原理解释 https://zelikk.blogspot.com/2024/07/rwkgyg-cfwarp-unpack.html
评论
发表评论