![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Suppressing output to the screen | rolex.mp | UNIX for Dummies Questions & Answers | 1 | 02-08-2007 04:19 AM |
| how to force output to screen?? | ckng | UNIX for Advanced & Expert Users | 6 | 10-13-2006 01:46 PM |
| no screen output | wisher115 | UNIX for Dummies Questions & Answers | 0 | 09-17-2006 08:25 AM |
| screen output | gundu | Shell Programming and Scripting | 1 | 03-15-2005 09:31 AM |
| need to hide output to screen | boat73 | Shell Programming and Scripting | 1 | 01-29-2002 10:54 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Turn off Screen Output
Is there a way to turn off standard output while processing is going on? I have tried redirecting to /dev/null but that is not working because some of the commands invoke a profile. I would like to temporarily turn off the screen output until the processing is complete. Sort of like a splash screen while everything is being intialized.
Thanks. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Why would a profile create screen output if you are cacthing both stderr and stdout?
|
|
#3
|
|||
|
|||
|
I'm really not sure whey the output is generated. I am calling a global environment function that generates the output. It may not be from the profile but it looks like what happens when I login to the box.
|
|
#4
|
|||
|
|||
|
I mean - are you trapping 1 and 2 like this?
Code:
myscript > /dev/null 2>&1 |
|||
| Google The UNIX and Linux Forums |