- or download this
#!/usr/bin/perl
...
close( $input );
close( $output );
- or download this
syntax error at test.pl line 12, near "} while"
Execution of test.pl aborted due to compilation errors.
- or download this
print $output while (<$input>);
- or download this
GLOB(0x84f3bdc)GLOB(0x84f3bdc)....
- or download this
print {$output} $_ while (<$input>);
or
print $output $_ while (<$input>);
- or download this
#!/usr/bin/perl
...
close( $input );
close( OUTPUT );