What’s a command to list all recent failures in Autosys?
I was thinking of autorep -d -J ALL followed by some kind of grep, but the autorep report comes in paragraphs, with the job name and the status in separate lines, so I need to write a custom filter in Perl unless I’m overlooking some quick and simple option.
The
-dflag is giving details, which is whyautorepis producing paragraph-like output. Runningautorep -J ALL | grep "FA"or similar should give you the listing just fine.