![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| login ssh without password | alfredo | HP-UX | 2 | 04-13-2008 08:10 PM |
| login password.... | venkatramana | UNIX for Dummies Questions & Answers | 1 | 12-07-2007 05:03 AM |
| Root login password | pmpx | SUN Solaris | 1 | 02-23-2006 11:03 AM |
| login & password | cab | UNIX for Advanced & Expert Users | 8 | 08-01-2003 12:33 PM |
| Hiding password from ps | sudojo | Shell Programming and Scripting | 7 | 04-04-2002 01:52 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Hello,
I am trying to figure out away to hide a command from users when performing a ps check. I have a ksh that purges a table in a database. If I perform a >ps -eaf |grep ksh, I get the login id and password. I do not want other users seeing this. Is there a way to hide this. The login id that I use is not a login id on the unix box. DBA's will not give permission to my unix id to update the database. We are using a AIX 5.1 platform. thanks, |
| Forum Sponsor | ||
|
|
|
|||
|
Hello,
I tried the following and it works, the only thing is I'm not sure if there is an option in 'ps' or 'grep' to display re-directs. >sqlplus <<!^Juser/passwd^Jselect * from table;^Jexit^J! >ps -eaf |grep sqlplus guest 97432 125548 82 09:31:56 pts/1 0:04 sqlplus |