Hiding Passwords while typing..

Hi,

We need ur advice,...
We are integrating our application (oracle) with OID,and OID is with another team.
While integrating they have to provide their 'ADMIN-password' when the script prompts ,But the password they are about type is visible.
If this is the case they are denying it,....
Is there any way to hide the password what they are typing..

We hav to configure this in VNC session,and they will provide simply their password..and leave the session......

Hope I am clear.......Itz little bit URGENT..!!

Regrards

In your script add these lines:

stty -echo    
	echo -n "Enter database password:  "
	read DB_password
stty echo

"stty -echo" turns off all echo to term.
-GGR