Unable to get the full content into a file when I redirect installp command output..

When i use the command to check the preview of the filesets to be installed using CLI

# When using this commad 'm able to see all Preview view of the filesets to be installed

installp -apgX -d "." all

# When I redirected the same output to a file 'm able to see only half the details like (eg: Only File space) and the rest warinings are not available.

Help me in getting the full view of it.

installp -apgX -d "." all

Try redirecting stderr to the file too:

installp -apgX -d "." all > some_file 2>&1
1 Like