10 lines
228 B
Bash
10 lines
228 B
Bash
#!/bin/sh
|
|
|
|
install() {
|
|
opkg update
|
|
wget https://dl.openwrt.ai/23.05/packages/x86_64/kiddin9/luci-app-partexp_git-25.280.04805-6f563c1_all.ipk
|
|
opkg install luci-app-partexp_git-25.280.04805-6f563c1_all.ipk
|
|
}
|
|
|
|
install
|