Chaitanya K
Chaitanya K

Reputation: 3

How to stop logs from displaying in the terminal

When I open an application from the terminal like jDeveloper, how do I stop the exception stacktrace within jdev from being displayed on the terminal?

Upvotes: 0

Views: 401

Answers (1)

Alberto Zaccagni
Alberto Zaccagni

Reputation: 31570

Assuming that you are using bash as your shell and that jdev is your executable

jdev  &> /dev/null 

will not show anything in the terminal. If you just want to redirect stderr then you could do

jdev 2> /dev/null

Upvotes: 2

Related Questions