Sorry for not very clearly formulated question. I wrote those commands by hand and 
obviously with lot of errors.

> 
> > >awk -F ' FS=";" {print $1}'
> > 1;1
> > 2
> 
> Don't use the -F option if you are setting the field separator inside
> the code.
> 

 This was a mistake. 

The problem is solved by 
awk 'BEGIN{FS=";"}{print $1}' testfile 

as suggested by Dough Poland. 

Thx for the replies.

 r.

Zdenek Roubicek

Department of Network Management
T-Systems PragoNet, a.s.
Na Pankráci 1685/19,140 21 Prague 4
Phone : +420 2 3609 9615                
Fax   : +420 2 3609 9999
E-Mail: [EMAIL PROTECTED]

 
_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to