in reply to Re: pp filter regex
in thread pp filter regex

Sorry for forgetting the error message. Both using ' and " does output an error saying that the command myMainScript (in the regex) is written wrongly. On a Unix system the same works perfectly, but I am not quite sure how to write my Regex in the command line on a Windows machine...

Replies are listed 'Best First'.
Re^3: pp filter regex
by Anonymous Monk on Jun 26, 2018 at 23:38 UTC

    On a Unix system the same works perfectly, but I am not quite sure how to write my Regex in the command line on a Windows machine...

    Avoid the commandline, write a program.

    #!/usr/bin/perl -- use strict; use warnings; system 'pp.bat', ...;

    pp.bat ain't nothing but use pp; pp->go;