Help for this page

Select Code to Download


  1. or download this
    $whatisit = system "whatis grep";
    $whatisit =~ s/.*-//;
    print $whatisit;
    
  2. or download this
    $x = "grep           (1)  - print lines matching a pattern";
    $x =~ s/.*-//; 
    print $x;