Help for this page

Select Code to Download


  1. or download this
    chomp @FILE;
    my $every_command = join '', map { "$_\r\n" } @FILE;
    print $sock $every_command;
    
  2. or download this
    chomp @FILE;
    foreach my $command ( @FILE ) {
       print $sock "$command\r\n";
    }