![]() |
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 |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| split monthly logfiles into daily logfiles | clzupp | Shell Programming and Scripting | 1 | 11-07-2008 08:07 PM |
| Displaying output from df -k in GB instead of KB | LinuxRacr | Shell Programming and Scripting | 6 | 09-19-2007 04:31 PM |
| Redirecting OUTPUT | Chanakya.m | Shell Programming and Scripting | 1 | 08-13-2007 04:27 PM |
| Output all commands to logfiles ??? | fawqati | UNIX for Advanced & Expert Users | 2 | 06-21-2006 03:47 AM |
| Redirecting output to multiple log files? | darthur | UNIX for Dummies Questions & Answers | 3 | 01-15-2002 12:54 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
help in redirecting output to multiple logfiles without displaying it on the screen
Hi,
1. Code:
some_command > logfile1 2>&1 2. Code:
some_command | tee logfile1 | tee logfile2 please correct me if i am wrong as i am new to shell scripting.. Is there a way to redirect everything that would appear on the terminal to multiple logfiles without displaying it(output) on the terminal?? |