in reply to Awk usage in perl

Welcome to Perl! You may try the following shell one-liner:
perl -nale 'print $F[3]' comms_input

Note: Perl array reference is zero-indexed by default - 'print $F[3]' vs {print $4}