#!/usr/bin/gawk -f BEGIN{ FS="," } NF >1 { while(getline ) { if($4!="" && NF>1) { print $4 } } }