![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Using Find w/ Grep? | beefeater267 | Shell Programming and Scripting | 2 | 01-24-2009 07:05 AM |
| Help using find/grep | Rally_Point | UNIX for Dummies Questions & Answers | 4 | 12-18-2008 03:34 AM |
| find , grep | james94538 | UNIX for Dummies Questions & Answers | 3 | 10-09-2008 10:03 PM |
| grep, find or awk? | netrom | UNIX for Dummies Questions & Answers | 4 | 04-09-2008 06:03 PM |
| grep and find | MEllis5 | UNIX for Dummies Questions & Answers | 1 | 04-07-2008 09:16 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Quote:
Code:
for x in `cat temp.txt`; do sed -i 's/blue/black/g' $x sed -i 's/yellow/black/g' $x sed -i 's/red/black/g' $x done Although the preferred method would be to use "while read" Code:
while read x ; do sed -i 's/\(blue\|red\|yellow\)/black/g' "$x" done < temp.txt |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|