I wrote a python code and at some point it checks out using svn. I don't want to see the outputs of svn on my terminal screen. I heard that to block this, I should use /dev/bin or something like that, but I don't know how could I do that and what should I do. Is there anyone to help me?
2 Answers
You can redirect the output of svn command to /dev/null using:
svn <command> [options] [args] 2>/dev/null svn co -q URL in most cases output nothing to stdout