Batch Programming in the OMSA CLI

The following batch file generates some simple text reports and writes the output to a shell script file. #!/bin/sh # Example OpenManage Server Administrator batch file # The name of the output text file is passed to this batch file as a parameter # # Write system summary information to a new file. omreport system summary -outc $1 # ................
................