![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Remove xmlns from xml output file | ca_sr2274 | Shell Programming and Scripting | 1 | 08-27-2008 04:00 AM |
| vi command -output garbage char in HP-UX | jambesh | Shell Programming and Scripting | 3 | 08-30-2007 06:07 AM |
| Removing Garbage output | skyineyes | Shell Programming and Scripting | 4 | 07-04-2007 05:03 PM |
| How do i remove the unneccesary output ? | Raynon | Shell Programming and Scripting | 2 | 09-18-2006 10:00 PM |
| Script to Remove Garbage Character | Eddie_The_Head | Shell Programming and Scripting | 4 | 03-28-2006 05:09 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Concur with era...as the code is redirecting stdout and stderr of every command except the shell's. What you are trying to do can be done only using exec which can redirect the stdout and stderr of the shell (in which the rm and touch commands are executed) to /dev/null that is...
Code:
#!/usr/bin/ksh exec 1>/dev/null 2>&1 set -x touch list.txt rm temp_out temp_a temp_b temp_c rm Filter1 Filter2 |
![]() |
| Bookmarks |
| Tags |
| unix commands |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|