![]() |
|
|
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 |
| Replacing in a variable | belfastbelle | UNIX for Dummies Questions & Answers | 3 | 06-26-2009 10:08 AM |
| Replacing a pattern using variable? | shivarajM | Shell Programming and Scripting | 3 | 04-30-2009 04:30 AM |
| Help in replacing text with the value of a variable | lotto_123 | Shell Programming and Scripting | 4 | 06-13-2008 08:39 AM |
| Replacing $ in variable | ashish_uiit | UNIX for Dummies Questions & Answers | 10 | 02-29-2008 09:29 AM |
| Replacing set of characters with a value of a variable | prekida | Shell Programming and Scripting | 1 | 07-26-2005 09:14 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
replacing line with variable
All I want to do is replace the 2nd line in a file with a variable, eg,
var=xxx the file 'test' containing: aaa bbb ccc replace bbb with xxx aaa xxx ccc I had it working with sed on a redhat machine, but it doesn't work on a mac machine. |
|
||||
|
That is just writing to standard out, not editing the actual file. I could redirect and mv it, but the files are large and I'd like to avoid having to do that.
|
|
||||
|
Quote:
Code:
awk '{.....}' filename | tee filename
|
|
||||
|
I don't have much idea on "perl"..check for more options on editing on a particular line . This might help you for inline coding Code:
perl -i -pe 's/bbb/xxx/i;' file_name.txt ---------- Post updated at 10:07 PM ---------- Previous update was at 10:04 PM ---------- Good Rakesh ... I was thinking there will be some alternative to "perl"..since i prefer to do it in awk
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|