File: listOptions

package info (click to toggle)
freefem3d 1.0pre8-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,920 kB
  • ctags: 7,145
  • sloc: cpp: 45,748; sh: 8,698; yacc: 2,847; makefile: 600; ansic: 504; perl: 110
file content (12 lines) | stat: -rwxr-xr-x 292 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# get options categories
# 
# Warning: This script should only be launched automatically

fileList=`find . -name "*pp" | xargs  grep -l -E "public[' ''\t''\n']+ParametrizableObject"`

# get options categories names
for i in `echo $fileList`
do
  `pwd`/scripts/getOptions.pl $i
done