in reply to STDOUT Issues

Redirect STDOUT to /dev/null

system( "python extractx.py $folder/junction.fasta > /dev/null" )

update: Assuming you're on a *nix system, of course.

For Windows, redirect to a file in your temp folder (probably "c:\windows\temp").

Replies are listed 'Best First'.
Re^2: STDOUT Issues
by ikegami (Patriarch) on Jun 27, 2007 at 22:03 UTC

    For Windows, redirect to a file in your temp folder (probably "c:\windows\temp").

    Windows has a sink device too: NUL. It dates back to at least DOS 3.

      That's something I probably knew 15 years ago. Fortunately, I don't do any windows development now:)

      Thanks for the reminder

        File::Spec->devnull