Glam Prestige Journal

Bright entertainment trends with youth appeal.

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?

1

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

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy