ADSM-L

Re: AW: DSMSERV UNLOADDB

2004-10-07 11:55:37
Subject: Re: AW: DSMSERV UNLOADDB
From: Richard Sims <rbs AT BU DOT EDU>
To: ADSM-L AT VM.MARIST DOT EDU
Date: Thu, 7 Oct 2004 11:56:20 -0400
On Oct 7, 2004, at 11:34 AM, Sternecker, Peter wrote:

if your TSM-Server runs on Unix

shell command | tee path_to_logfile

this sends output to the terminal and the logfile.

That will pipe Stdout, but not Stderr, where scary stuff
goes.  You may instead want to do

    shell command 2>&1 | tee path_to_logfile

or more conveniently use Cshell:

    command |& tee path_to_logfile

This keeps important msgs from being lost.

   Richard Sims

<Prev in Thread] Current Thread [Next in Thread>