Jerry,
echo will send its output to wherever the "stdout" is at the
specific portion of your script.
Here is a quickie to demonstrate:

#!/bin/sh
echo "line 1"
echo line 2
(
echo "Testing echo line 3"
) >/dev/null
echo "Number 4"
# end quickie

And the output is:

line 1
line 2
Number 4

We'd have to see your script to help further.

Have fun,
--
Rick L. Mantooth
[EMAIL PROTECTED]
Do Roman paramedics refer to IV's as "4's"?

On Wed, 17 Nov 1999, Jerry Keene wrote:

> I ran a bash script with quite a few informative "Echo" lines 
> embedded on a linux 5.2 box.  No possibility that some of them 
> wouldn't have been part of the script execution regardless of 
> branching.
> 
> Evidence suggested that the script ran properly and accomplished 
> all goals.
> 
> However, there was no output to the screen from the "echo" 
> statements?
> 
> Is bash configured by default to send echos somewhere other than 
> the screen.
> 
> I suspect this is another one of the questions whose obvious 
> answer will make me blush?
> 
> 
> 
> Jerry R. Keene
> Senior Systems Analyst
> SCS ENGINEERS
> Partners With EPA Through The Landfill Methane Outreach Program
> 
> Phone: 703.471.6150
> Fax: 703.471.6676
> http://www.scseng.com
> 
> 
> -- 
> To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
> as the Subject.
> 
> 


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to