![]() |
|
|
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 |
| Perl Arrays and Substituion | popeye | Shell Programming and Scripting | 1 | 05-06-2008 06:29 AM |
| option followed by : taking next option if argument missing with getopts | gurukottur | Shell Programming and Scripting | 2 | 03-17-2008 12:46 PM |
| cp - no to all option? | td_kuoj3 | UNIX for Dummies Questions & Answers | 6 | 08-18-2006 04:57 PM |
| su option | lesstjm | UNIX for Advanced & Expert Users | 1 | 11-02-2005 01:54 PM |
| -h option | Raom | UNIX for Advanced & Expert Users | 1 | 10-26-2005 02:19 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Env Variable substituion in Sed (-s option)
Folks,
I've been trying to use the ENV variable with slashes(/) in its value inside the sed substitution.. Sed 's/myval/'$MYVAL'/' file1 >> file.tmp If MYVAL=<sometext>, it works. if MYVAL=/home/venkat, it doesnt. *************************** bash-2.05$ export VAL=/home/venkat bash-2.05$ sed 's/myval/'$VAL'/' file1 sed: command garbled: s/myval//home/venkat/ bash-2.05$ ***************************** I know that we generally escape the / using \, but here the value being substitued during run-time. Could some1 throw some light on it. Thx 4 ur time. --Venkat. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|