7 lines
131 B
Bash
Executable file
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
|