mirror of
https://github.com/openwrt/luci.git
synced 2026-04-15 10:51:51 +00:00
8 lines
131 B
Bash
Executable File
8 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
for i in $(find $(dirname $0)/../etc/uci-defaults -type f -not -name "$2")
|
|
do
|
|
[ -f $i ] && {
|
|
bash $i; rm $i
|
|
}
|
|
done
|