| Meghavvarnam 2005-11-23, 5:54 pm |
| Janis Papanagnou wrote:
> Meghavvarnam wrote:
>
> All variables are either "" (empty string) or 0 (numeric zero) when
> you access them the first time.
>
>
> On Unix you can define as first line in your script
>
> #!/bin/awk -f
>
> (or whereever your awk is installed), or you can call the awk interpreter
> explicitly with the file
>
> awk -f file_with_your_awk_program
>
> or with the program (not recommended for programs of non-trivial size)
>
> awk '...awk-statements...'
>
>
>
> It's like in other computer laguages, the brackets must match
>
> { for (string in strings)
>
>
I do have a closing brace for that. My intention was to paste just the
modified part and leave out the original script that Ed had put out
over here.
Thanks anyway for your inputs Janis.
Warm Regards,
Megh
>
> Janis
|