指令或脚本

已保存的指令或脚本

扫描匹配社交软件用户信息

https://github.com/qeeqbox/social-analyzer

2025-12-01 11:03:26

一键重装DD脚本

https://github.com/bin456789/reinstall

2025-12-01 10:59:27

一套指令修改默认DNS

sudo systemctl stop systemd-resolved sudo systemctl disable systemd-resolved sudo rm /etc/resolv.conf sudo nano /etc/resolv.conf 替换内容 nameserver 8.8.8.8 nameserver 8.8.4.4 sudo chmod 644 /etc/resolv.conf cat /etc/resolv.conf nslookup google.com

2025-11-27 20:56:17

Centos换源解决过期问题

bash <(curl -sSL https://linuxmirrors.cn/main.sh)

2025-11-27 09:09:58

测速跑分脚本

bash <(wget -qO- --no-check-certificate https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh)

2025-11-27 08:49:42

渐变色背景-示例

方案一:暖色调渐变(推荐) /* 替换原来的body背景样式 */ body { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); font-family: 'Roboto', sans-serif; min-height: 100vh; } 方案二:淡雅紫色渐变 /* 替换原来的body背景样式 */ body { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); font-family: 'Roboto', sans-serif; min-height: 100vh; } 方案三:清新绿色渐变 /* 替换原来的body背景样式 */ body { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); font-family: 'Roboto', sans-serif; min-height: 100vh; } 方案四:简约白色+微妙纹理 /* 替换原来的body背景样式 */ body { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); font-family: 'Roboto', sans-serif; min-height: 100vh; } 方案五:日落橙粉渐变 /* 替换原来的body背景样式 */ body { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); font-family: 'Roboto', sans-serif; min-height: 100vh; }

2025-11-26 09:31:51

定时检查脚本运行状态

#!/bin/bash # 定义syncthing的路径 SYNCTHING_PATH="/root/syncthing-linux-amd64/syncthing" # 定义HOME环境变量 export HOME=/root # 检查syncthing是否已经运行 if pgrep -x "syncthing" > /dev/null; then echo "syncthing is already running." else echo "syncthing is not running. Starting syncthing..." nohup $SYNCTHING_PATH -no-browser -logfile /root/syncthing/syncthing.log > /dev/null 2>&1 & echo "syncthing started." fi

2025-11-26 03:05:05

文生图文字LOGO

用中文 “逆袭博客”,生成带有拖墨效果,漂带效果,波普艺术风格的LOGO。

2025-11-25 12:59:56

测速脚本

wget -qO- bench.sh | bash

2025-11-24 04:28:32