Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のスクリプトはsqlplus標準形式で呼び出します:
sqlplus
sqlplus $USER/$PASSWD@$DBNAME
ps -efpasswd を含むコマンド全体が表示されるため、これは明らかに安全ではありません。
ps -ef
手動プロンプトなしで sqlplus を呼び出すにはどうすればよいですか? それでも passwd を隠しますか?
ありがとう
悪い:
sqlplus $USER/$PASSWD@$SID<<!! ... --some SQL ... !!
ps -ef接続文字列を表示します
良い:
sqlplus /nolog<<!! connect $USER/$PASSWD@$SID; ... --some SQL ... !!
ps -ef接続文字列を表示しません