Help for this page

Select Code to Download


  1. or download this
    $file = '/home/steven/http.list';
    open(INFO, $file);
    @lines = <INFO>;
    close(INFO);
    
  2. or download this
    foreach $i(@lines){
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    die "Could not create socket: $!\n" unless $sock;
    print $sock ""this is where i need my http statement to go (from the f
    +ile list";
    close($sock);