in reply to Re^2: Some system command not working as required after File::Tee
in thread Some system command not working as required after File::Tee

The only problem is that this snippet doesn't do what File::Tee does - which, as I understand, is important to the original poster...

  • Comment on Re^3: Some system command not working as required after File::Tee

Replies are listed 'Best First'.
Re^4: Some system command not working as required after File::Tee
by Khariton (Sexton) on Dec 13, 2010 at 21:01 UTC
    may be you can redirect less output stdout and stderr to file?
    system('less text 1>>file 2>>file');