Hi All,
Probably a simple one, but I'm not understanding why this isn't working the way I expect it to work:
AB="level20"
echo "filename50.cfg,$AB" | awk -F. '{print $1","$AB}'
Output:
filename50,filename50.cfg,level20
I'm expecting output to be:
filename50,level20
I'm confused... might...