Hello again,

one minor nit:

On Tue, Aug 16, 2005 at 07:36:07PM +0200, Ralf Wildenhues wrote:
> +  at_groups=`echo "$at_groups$as_nl$at_groups_all" |
> +    awk ['BEGIN { FS = ";" }
> +     !/ / { selected[$ 1]  = 1 }

since the field splitting is effectively switched off, $0 might
be more readable here.  Like this:

    ...
    awk ['BEGIN { FS = ";" # Effectively switch off field splitting.
         }
        !/ / { selected[$ 0]  = 1 }
    ...

Thank you again,
        Stepan


Reply via email to