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
Post a Comment