Line Code
1 2 3 4 5 6 7 8 9 10
#! /bin/awk -f
BEGIN {
#FS="[\"\"]|[><]"
FS="[\"\"]"
print "Start"
}
{
print $2
}
END {print "END"}