-
Notifications
You must be signed in to change notification settings - Fork 10
format of config files
sseth edited this page Jul 10, 2015
·
2 revisions
Example:
name value
flow_parse_torque "(.?)\\..*"
flow_parse_moab (.*)
- Tab delimited
- The files needs a header of:
name<TAB>value
- lines with
##
are removed (comments) - Quotes are removed when reading it
-
flow_parse_torque
gets a value:(.?)\\..*
-
flow_parse_moab
get a value:(.*)
- Each time you edit the file, its good to test it using:
x="~/flowr/conf/flowr.conf"
myopts = load_conf(x); myopts
footer