Rational Developer for System z
PL/I for Windows, Version 7.6, Programming Guide

Examples specifying ILIB parameters

The following examples show different methods for specifying parameters to ILIB.

The operations shown in each example create a new library, newlib.lib, and its listing file, newlib.lst, from the existing mylib.lib library. mylib.lib is unchanged, but newlib.lib has these changes:

Command Line Method

At the command line prompt, enter the following:

ilib /out:newlib.lib /list:newlib.lst mylib.lib /remove:text root table
 /extract:string

Response File Method

First, create a response file with the following contents:

    /out:newlib.lib
    /list:newlib.lst
    mylib.lib
    /remove:text
    root table
    /extract:string

Then, assuming the name of the response file is response.fil, invoke ILIB with:

    ilib @response.fil

Terms of use | Feedback

This information center is powered by Eclipse technology. (http://www.eclipse.org)