add some usage information to a few utilities

This commit is contained in:
Mark Olesen
2009-12-04 10:20:15 +01:00
parent ebf94bfc74
commit 0e33bf0bba
7 changed files with 118 additions and 29 deletions

View File

@ -93,10 +93,23 @@ bool inFileNameList
int main(int argc, char *argv[])
{
argList::addBoolOption("ascii");
argList::addBoolOption("noPatches");
argList::addOption("patches", "patchList");
argList::addBoolOption
(
"ascii",
"write in ASCII format instead of 'C Binary'"
);
argList::addBoolOption
(
"noPatches",
"Suppress writing any patches"
);
argList::addOption
(
"patches",
"patchList",
"Specify particular patches to write. "
"An empty list suppresses writing the internalMesh."
);
# include "addTimeOptions.H"
# include "setRootCase.H"