Help for this page

Select Code to Download


  1. or download this
        @ARGV = ('httpd.conf');
        while (<>) {
            print("Line = $.\nName = $1\n"), last
                if /^ServerName\s+(\S+)\s*$/;
        }
    
  2. or download this
        % perl -ne 'print("Line=$.\nName=$1\n"), last if /^ServerName\s+(\
    +S+)\s*$/;' httpd.conf