脚本收集
2024年07月27日
脚本工具
239字

GNU/Linux 更换系统软件源脚本及 Docker 安装脚本

  • 中国大陆
bash <(curl -sSL https://linuxmirrors.cn/main.sh)
  • 中国大陆教育网
bash <(curl -sSL https://linuxmirrors.cn/main.sh) --edu
  • 海外地区
bash <(curl -sSL https://linuxmirrors.cn/main.sh) --abroad

融合怪测评脚本

融合怪命令

My terminal window
curl -L https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh

IP质量检测

  • IP质量检测,含多家数据库查询,含DNS黑名单查询
  • IPV4IPV6 检测,含ASN和地址查询
My terminal window
bash <(wget -qO- bash.spiritlhl.net/ecs-ipcheck)

科技lion一键脚本工具

  • 官网版
My terminal window
curl -sS -O https://kejilion.pro/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh
  • GitHub版
My terminal window
curl -sS -O https://raw.githubusercontent.com/kejilion/sh/main/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh
  • 国内版
My terminal window
curl -sS -O https://raw.gitmirror.com/kejilion/sh/main/cn/kejilion.sh && chmod +x kejilion.sh && ./kejilion.sh

IP质量体检脚本

  • 默认双栈检测
My terminal window
bash <(curl -Ls IP.Check.Place)
  • 只检测IPv4结果
My terminal window
bash <(curl -Ls IP.Check.Place) -4
  • 只检测IPv6结果
My terminal window
bash <(curl -Ls IP.Check.Place) -6
# 脚本工具
# Linux源更换
# Docker安装
# IP检测
# 科技lion脚本
作者信息:鬼鬼Sama
发表于:2024年07月27日
本文标题: 脚本收集