flm01/mote/v1/openwrt/package/luci/host/bin/uci-defaults
Bart Van Der Meerssche 3a28838b29 change repository layout
2010-07-07 16:37:03 +02:00

7 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