in reply to File Permission with open
#!/usr/bin/perl use strict; use warnings; my $file = '/usr/local/tmp_files/temp_file_for_print.txt'; open (LPR, "| lpr -P/dev/lp"); print LPR $file; close(LPR);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: File Permission with open
by grungero (Initiate) on Oct 16, 2010 at 02:38 UTC |