This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -eu | |
| if command -v apk >/dev/null 2>&1; then | |
| PM="apk" | |
| EXT="apk" | |
| else | |
| PM="opkg" | |
| EXT="ipk" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ========================================== | |
| # Skyline VPS 综合测评脚本 - 2026 最终版 | |
| # ========================================== | |
| # 1. 核心:自毁设置 (运行完即删,保护隐私) | |
| rm -f $0 | |
| # 2. 定制化 Logo (已更新为你的新域名 sky9119.cc) | |
| echo -e "\033[1;36m" |