Skip to content

Commit

Permalink
Merge pull request #21 from swails/master
Browse files Browse the repository at this point in the history
Add back the help flag to sqm.
  • Loading branch information
jchodera committed Jul 8, 2015
2 parents fd69b5d + 633ac44 commit ead4384
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sqm/sqm.F90
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ program sqm
call getarg(iarg,mdout)
else if (arg == '-O') then
owrite = 'R' ! output status: Replace
else if (arg == '-h') then
write(6,'(a)') 'sqm [-O] -i <input> -o <output>'
write(6,'(a)') ' -O Overwrite output file if it exists'
write(6,'(a)') ' -i <input> Input file'
write(6,'(a)') ' -o <output> Output file'
write(6,'(a)') ' -h Show this message'
call mexit(6, 0)
else if (arg == ' ') then
continue
else
Expand Down

0 comments on commit ead4384

Please sign in to comment.