- or download this
perl -e ' use P;
my $filelist="C:\Users\cign\Desktop\printFile.txt";
P "opening file: %s", $filelist;
'
opening file: C:SERS GNDESKTOPPRINTFILE.TXT
- or download this
perl -we 'use strict; use P;
my $filelist="C:\Users\cign\Desktop\printFile.txt";
...
Unrecognized escape \D passed through at -e line 2.
Unrecognized escape \p passed through at -e line 2.
opening file: C:SERS GNDESKTOPPRINTFILE.TXT
- or download this
perl -we 'use strict; use P;
my $filelist=q{C:\Users\cign\Desktop\printFile.txt};
...
C:\Perl64>type printFile.txt
Hello World!