May 292014
Use Perl to split string instead of awk
Answer:
If you know Perl well, there is no need to use awk to do string processing such as string splitting, it is easy with Perl also, e.g.
# echo "foo,bar,k3" | perl -F',' -lane 'print $F[1]'
bar