Help for this page

Select Code to Download


  1. or download this
    while (<FH>) {
      print if /^Host System (?!#)/;
      # or perhaps for more whitespace safety
      # print if /^Host\s+System\s+(?![#\s])/
    }