OneKeyExpand/install.sh

11 lines
222 B
Bash
Raw Normal View History

2024-10-19 21:30:49 +08:00
#!/bin/sh
install() {
opkg update
2024-10-19 21:34:34 +08:00
wget https://cafe.cpolar.cn/wkdaily/OneKeyExpand/raw/branch/main/luci-app-partexp_all.ipk
2024-10-19 21:44:28 +08:00
opkg install luci-app-partexp_all.ipk 2>/dev/null
echo "安装成功"
2024-10-19 21:30:49 +08:00
}
install