in reply to Run Python Scripts
If what you want it to run a Python script from within a Perl script, then something like this should work:
I think. My Python talents extend pretty much as far a 'Hello World'.#! /usr/local/bin/perl use strict; use warnings; my $rc = qx(/usr/local/bin/python MyPythonCode.py); ########## # Do Stuff with the data in $rc ########## exit(0);
----
I Go Back to Sleep, Now.
OGB
|
|---|