repo.or.cz
/
git
/
raj.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of github.com:Softcatala/git-po
[git/raj.git]
/
generate-configlist.sh
blob
8692fe5cf4d5e4025265e6110254b05640615fea
1
#!/bin/sh
2
3
echo
"/* Automatically generated by generate-configlist.sh */"
4
echo
5
6
print_config_list
() {
7
cat
<<EOF
8
static const char *config_name_list[] = {
9
EOF
10
grep
-h
'^[a-zA-Z].*\..*::$'
Documentation
/*
config.txt Documentation
/
config
/*
.txt |
11
sed
'/deprecated/d; s/::$//; s/, */
\n
/g'
|
12
sort
|
13
sed
's/^.*$/ "&",/'
14
cat
<<EOF
15
NULL,
16
};
17
EOF
18
}
19
20
echo
21
print_config_list