简体   繁体   中英

PERL: How to redirect STDOUT of a script inside a wrapper

I want to make a perl script which gonna be a wrapper to another script. Inside my wrapper, I run the "other script" with some parameters. This "other script" should print quite a lot of runtime data to the STDOUT. So, how do I let the "some script" print the data to STDOUT immediately when I run it inside my perl wrapper? (I don't want any files/variables only the STDOUT)

Thank you for your answers in advance!

If you call your command with system() then the stdout will go to stdout.

eg:

perl -e "system('ls');"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM