File: listOptions

package info (click to toggle)
freefem3d 1.0pre10-3.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 24,888 kB
  • sloc: cpp: 57,201; sh: 8,788; yacc: 2,975; makefile: 1,144; ansic: 508; 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