I'm using Sultan for an automated installation script internally.
I would always like to see the output. Now I do that like this:
r = s.sh('./configure').run()
print('\n'.join(r.stdout))
But I have a lot of commands. Can I configure that as a constructor parameter or something?