git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@6972 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2011-09-15 14:26:58 +00:00
parent 0d0bde3e7c
commit b806706398
1 changed files with 11 additions and 1 deletions

View File

@ -335,7 +335,17 @@ int main (int narg, char **arg)
int iarg = 1;
while (iarg < narg) {
if (strcmp(arg[iarg],"-s") == 0) {
if (strcmp(arg[iarg],"-h") == 0) {
printf("Syntax: restart2data switch arg ... "
"restart-file data-file (input-file)\n");
printf(" optional switch = -s");
printf(" arg = suffix to remove from style names");
printf(" restart-file and data-file are mandatory");
printf(" input-file is optional");
printf(" if specified it will contain LAMMPS input script commands");
printf(" for mass and force field info");
printf(" only a few force field styles support this option");
} else if (strcmp(arg[iarg],"-s") == 0) {
if (iarg+2 > narg) {
printf("Syntax: restart2data switch arg ... "
"restart-file data-file (input-file)\n");