[GRASSLIST:6024] problem in importing

hello

this is my text file format that I want to import to grass
I used :

x y no str1 str2 str3
------------------------------------------------------------------------------
35.50 | 37.59 | 27 | adana | aladag | karahan

I used :
cat 'hey_nakil.txt ' | v.in.ascii out=hey_nakil xcol=1 ycol=2
but it gives error.

What should the command be ?

regards

______________________________________
XamimeLT - installed on mailserver for domain @deprem.gov.tr
Queries to: postmaster@deprem.gov.tr
______________________________________
The views and opinions expressed in this e-mail message are the sender's own
and do not necessarily represent the views and the opinions of Earthquake Research Dept.
of General Directorate of Disaster Affairs.

Bu e-postadaki fikir ve gorusler gonderenin sahsina ait olup, yasal olarak T.C.
B.I.B. Afet Isleri Gn.Mud. Deprem Arastirma Dairesi'ni baglayici nitelikte degildir.

this is my text file format that I want to import to grass
I used :

x y no str1 str2 str3
---------------------------------------------------------------------
35.50 | 37.59 | 27 | adana | aladag | karahan

I used :
cat 'hey_nakil.txt ' | v.in.ascii out=hey_nakil xcol=1 ycol=2
but it gives error.

What should the command be ?

get rid of the spaces, adding them makes all columns look like text strings
to v.in.ascii.

input should look like:

35.50|37.59|27|adana|aladag|karahan

Hamish