10 lines
186 B
Bash
10 lines
186 B
Bash
#!/bin/sh
|
|
|
|
install() {
|
|
opkg update
|
|
wget https://cafe.cpolar.cn/wkdaily/OneKeyExpand/raw/branch/main/luci-app-partexp_all.ipk
|
|
opkg install luci-app-partexp_all.ipk
|
|
}
|
|
|
|
install
|