linux - what is equivalent to SET verify off in shell script -


when run shell script of java error handling messages displayed every single time ran it.

i want option of not display screen since testing.

is there way this?

the way have right is:

./load_data.sh tcompass/protocol >> load_semantic.log 

redirect standard error:

./load_data.sh tcompass/protocol >> load_semantic.log 2>/dev/null 

Comments