A general (but fairly clunky) approach that can accomplish simple tasks
would use functions of module os, like
os.system( "executableCommand parms etc" )
dirListing = os.popen("ls -ltr").readlines()
If you want more I/O pipes check popen2()..popen4().
And then there is fork (which I haven't used) ..... Horst.
On Mon, 18 Feb 2002, Bob Miller wrote:
> Anybody have any experience with calling Perl from Python or vice
> versa?
>
> Can it be done?
>
> --
> Bob Miller K<bob>
> kbobsoft software consulting
> http://kbobsoft.com [EMAIL PROTECTED]
>