How can I extract data using AWK
I have data as follow
01---------
02-----
03-----
03---
I want to extract data to the file 01.dat,02.dat and 03.dat
the field value should be the part of file name
OutFile="xx"
awk -F"|" '{OutFile = $1; print OutFile}' x1 > $OutFile
echo $OutFile
this won't work because the field is not passed to the KSH.