![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | 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 here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Awk and Variables | deepak4you | Shell Programming and Scripting | 4 | 11-15-2007 06:18 AM |
| Variables | bobo | UNIX for Dummies Questions & Answers | 1 | 01-18-2007 10:37 PM |
| doing a sed on certain variables | seaten | UNIX for Dummies Questions & Answers | 10 | 09-05-2005 07:45 PM |
| doing a sed with variables | seaten | UNIX for Dummies Questions & Answers | 1 | 05-06-2005 11:48 AM |
| Using Variables to Set Other Variables | superdelic | UNIX for Dummies Questions & Answers | 3 | 04-21-2005 07:44 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
doing a sed with variables
Hi,
I'm trying to do the following , I have certain variables in a file and then I want to check for these variables in a certain cobol file to see if they contain a certain package if so replace them with value 1 but but that last line is giving problems: # for each variable in SQL file for var in `strings $file.vars` do # Set char /int patterns pat_int="^.*$var.*PIC.*9.*$" if grep "$pat_int" $cobol_file > /dev/null 2>&1 then value="1" # substitute variable in SQL file sed s/:$var/$value/g $file.out > $file.varsub |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Cross posting is not allowed in these formus, from the rules:
(4) Do not 'bump up' questions if they are not answered promptly. No duplicate or cross-posting and do not report a post where your goal is to get an answer more quickly. |
||||
| Google The UNIX and Linux Forums |