![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Calling expect scripts from other expect scripts | seva | Shell Programming and Scripting | 0 | 04-03-2008 10:45 AM |
| scripts please | rrdore | SUN Solaris | 2 | 12-07-2006 02:35 AM |
| use of ssh in scripts | esham | Shell Programming and Scripting | 7 | 11-16-2005 08:27 AM |
| Help with GDL to SQL scripts | ch4r1e5 | Shell Programming and Scripting | 0 | 10-31-2005 02:51 PM |
| using su in scripts | uchachra | UNIX for Dummies Questions & Answers | 3 | 03-11-2002 10:24 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#9
|
|||
|
|||
|
It worked , but it is asking for the password once again for the source server
any clue ? Thanks |
|
#10
|
||||
|
||||
|
try:
Code:
open $FTP_SRVR user $FTP_USR $FTP_PWD Last edited by vgersh99; 11-30-2007 at 04:35 AM. |
|
#11
|
|||
|
|||
|
Thanks a Lot
I am working on few more conditions , hopefully i would try to complete |
|
#12
|
|||
|
|||
|
Is there a way to hide the Password when we are typing ?
Thanks |
|
#13
|
||||
|
||||
|
Quote:
Code:
#!/bin/ksh
oldmodes=$(stty -g)
stty -echo
read password
stty ${oldmodes}
|
|
#14
|
|||
|
|||
|
Thanks !!!
|
|||
| Google The UNIX and Linux Forums |