> tr -s '[:blank:]' '\t' | cut -f5
And perhaps mention less painful
tr -s \  \\t | cut -f5
and perl -anwle 'print $F[4]'
if the user's input permits such simplification...


Reply via email to