autosys Extract specific jobs from jil file

2.7k Views Asked by At

I have thousands of jobs in Autosys JIL file, I would like to extract specific jobs starting with admin-* from jil files.

2

There are 2 best solutions below

0
On

I would extract them from the autosys itself as a jil file. On the cmd line just do:

autorep -qJ admin-* > admin_jobs.jil

That will create a file admin_jobs.jil with the search criteria.

Dave

0
On

In the Autosys portal under Enterprise Command Line tab

Select your Servers. Under Command enter below and click Execute.

autorep -J admin-% -q

This will provide all jobs starting with "admin-".