Search the Community
Showing results for tags 'stdout'.
-
cat data.csv | houdini script.{hip,hda} > new-data.csv aka HOUNIX It would be great if one could use houdini hips/hdas as general tools for processing datasets. In the above example this might be a csv file. Apologies for the duplicate question. The question is how though? Can houdini.exe -background achieve it, or can hcmd.exe capture stdin and stdout?
-
Hello I'm sending alembic rops to hqueue and there's a lot of preroll. Even with alfred-style progress turned on, I have no feedback on what's going on. I was thinking that I could add a python node to write to the stdout (which I though would show up in the hqueue logs) like so: import sys f= hou.frame() sys.stdout.write('frame: '+str(f) + '\n') But it doesn't work. Any ideas ? When I start houdini with the -foreground option (so that the shell it launches from doesn't spawn a new process and should receive outputs) and write to stdout, it only shows up in the python console Thanks