![]() |
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 |
| implicitly redirecting stdout to a file | ALTRUNVRSOFLN | Shell Programming and Scripting | 1 | 09-23-2008 03:42 PM |
| Redirecting STDERR message to STDOUT & file at same time | vikashtulsiyan | Shell Programming and Scripting | 10 | 04-09-2008 02:34 PM |
| Redirecting OUTPUT | Chanakya.m | Shell Programming and Scripting | 1 | 08-13-2007 04:27 PM |
| redirecting STDOUT & STDERR | jshinaman | Shell Programming and Scripting | 9 | 06-22-2007 12:04 AM |
| Redirecting the startup output | blakmk | UNIX for Dummies Questions & Answers | 3 | 10-28-2003 07:22 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Redirecting part of output to stdout
Hi,
I am trying to execute a command like this: Code:
find ./ -name "*.gz" -exec sh -c 'zcat {} | awk -f parse.awk' \; >> output
EDIT: Ah... Figured out... Sorry... Here's the solution: Code:
find ./ -name "*.gz" -exec sh -c 'zcat {} | awk -f parse.awk >> output' \;
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|