![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| NAWK - setting a variable to the highest value | Pablo_beezo | SUN Solaris | 1 | 05-29-2008 06:29 AM |
| Passing shell variable to NAWK | wakhan | Shell Programming and Scripting | 1 | 04-22-2008 11:52 PM |
| passing a variable inside a variable to a function | KingVikram | UNIX for Dummies Questions & Answers | 2 | 01-14-2008 04:28 PM |
| How to make nawk to set a shell variable | rakeshou | Shell Programming and Scripting | 1 | 10-17-2007 11:33 PM |
| nawk - Passing variables | sharif | Shell Programming and Scripting | 3 | 08-14-2007 02:37 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Passing a for loop variable into nawk
After searching through books and the internet for days I can't seem to find an example of this.
I'm trying to pass a variable from a for loop into nawk but can't seem to get all the syntax right. my script (thanks to anbu23 for nawk help) is this: for customers in `cat customers.txt` do nawk '$8 == "${customers}"' custom.txt > output/$customers.txt done I know that the 'output/$customers.txt' works, so it is being recognised, but the "${customers}" isn't being recognised. I've tried all manner of brackets and quotes in different places but can't seem to get nawk to recognise the variable in this particular place. Thanks for any help. |
| Forum Sponsor | ||
|
|