`ls -laF | perl -ane 'if($F[2] =~ /tnelson/){print}'` If there was a `--field 2` option, then I could do this as: `ls -laF | ack --field 2 tnelson` You might also want to pair this with -F / --separator (as per perl's -F) HTH,
ls -laF | perl -ane 'if($F[2] =~ /tnelson/){print}'If there was a
--field 2option, then I could do this as:ls -laF | ack --field 2 tnelsonYou might also want to pair this with -F / --separator (as per perl's -F)
HTH,