Help for this page
#!usr/bin/perl -w use strict; my @cmd=qw(lpr -S SYSTEMX -P QGPL/SPYVIEW -o l C:\\ABCDEFGH.txt); system(@cmd)==0 or die "cannot do this";
#!usr/bin/perl -w use strict; my @files=<c:\\ascii\\*>; ... my @cmd=qw(lpr -S SYSTEMX -P QGPL/SPYVIEW -o l $file); system(@cmd)==0 or die "cannot do this"; }