linux - How to stop logs from displaying in the terminal -


when open application terminal jdeveloper, how stop exception stacktrace within jdev being displayed on terminal?

assuming using bash shell , jdev executable

jdev  &> /dev/null  

will not show in terminal. if want redirect stderr do

jdev 2> /dev/null 

Comments