projects
/
project
/
luci.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove obsolete toplevel Makefile
[project/luci.git]
/
contrib
/
uci
/
hostfiles
/
bin
/
uci-defaults
1
#!/bin/sh
2
for i in $(find $(dirname $0)/../etc/uci-defaults -type f -not -name "$2")
3
do
4
[ -f $i ] && {
5
bash $i; rm $i
6
}
7
done