fork(8) download
  1. #!/usr/bin/perl
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. my $hobbit="Emulex LPe16000";
  7. if ($hobbit =~ m/^Emulex \K\w+$/) {
  8. print $&;
  9. }
  10.  
  11.  
Success #stdin #stdout 0s 17760KB
stdin
Standard input is empty
stdout
LPe16000