Hi,
how can I set FS for the lines which given in getline variable x
#cat zahlung.neu | awk ' BEGIN { FS="@"}
# {
# # print $0
# close("patient.neu")
# while ( (getline x < "patient.neu") > 0)
# {
# if (substr(x,1,7) == $2)
# {
# # print substr(x,9)
# name = substr(x,9)
# print name"@"$0 > "zahlung.neu1"
# break
# }
# }
# }'
Thanx