Help for this page

Select Code to Download


  1. or download this
    perl -alne 'print $F[1] if /user\@example.com/' /home/bob/db.txt
    
  2. or download this
    use warnings;
    use strict;
    ...
        chomp;
        print((split ' ')[1], "\n") if /user\@example.com/;
    }