问题
While connecting to db [ oracle] using sqlplus in Unix, I don't want to display the contents like:
connected to...
SQL>....
How would I remove these display entries?
回答1:
Your probably looking for the option -silent (or just -s):
> sqlplus -s username/password@database
来源:https://stackoverflow.com/questions/4655018/suppress-the-contents-of-the-sqlplus-command-in-unix