I have a python script that I want to run with xfvb-run. The original command would like so:
script.py > out 2> err
now it looks like so:
xvfb-run -d script.py > out 2> err
Yet this puts the error messages from script.py
into out
and not into err
. Which is understandable. Yet I would achieve the same behavior like before. How do I do this?
Thanks