thx
2011/10/18 Miner, Jonathan W (US SSA)
>
> > From: users-boun...@lists.fedoraproject.org [
> users-boun...@lists.fedoraproject.org] On Behalf Of Adel ESSAFI
> >
> > [adel@localhost ~]$ C=g
> > [adel@localhost ~]$ awk -v c=$C '{ print $c }' coran.pls
>
> Drop the dollar sign from the awk pri
> From: users-boun...@lists.fedoraproject.org
> [users-boun...@lists.fedoraproject.org] On Behalf Of Adel ESSAFI
>
> [adel@localhost ~]$ C=g
> [adel@localhost ~]$ awk -v c=$C '{ print $c }' coran.pls
Drop the dollar sign from the awk print statement...
awk -v C=$C '{print c}' coran.pls
The d