简体   繁体   中英

issue with tee command and a script

im trying to use tee command with rendercheck tests on ubuntu 15.04, tee command works fine with 6 tests of rendercheck for example :

 ./rendercheck -t fill,dcoords,scoords,mcoords,tscoords,tmcoords | tee summary

but if i added other more , example :

 ./rendercheck -t fill,dcoords,scoords,mcoords,tscoords,tmcoords,composite | tee summary

the output does not shows in terminal and the file summary does not contain nothing, so im not sure why i have this behavior with tee command, it would be great if someone can help me, thanks

"composite" test opens a graphic window, doesn't display text to standard output.

I guess you'll obtain the same behavior if you just execute:

rendercheck composite | tee summary

Regards

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