File: listOptions

package info (click to toggle)
freefem3d 1.0pre5-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,516 kB
  • ctags: 6,368
  • sloc: cpp: 37,565; sh: 8,535; yacc: 2,728; ansic: 830; makefile: 339; 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