I want to make the stdout of a command visible on the terminal but also use it as stdin for another command without many workarounds i.e. creating files in between.
This obviously doesn't print the stdout
to the terminal.
command1 > command2
With tee
I would need to create a file in between, are there any other ways?