Careful!  Either way makes your password more suseptable to being stolen.
Of course, if you're using FTP, it's being passed in plaintext ANYWAY, so... :)

You could try using the Secure Shell "scp" command.  On the other end you
could set up one of those authorized key thingies so it won't even prompt
for a password.


And FYI, if I understand the generic FTP client well enough, the reason
it's not accepting your password in your ksh script is probably because
of the way password prompts work in interactive clients like this.

They don't read from stdin, and instead try to read from a TTY.

-bill!
(could be getting that all wrong :) )


On Wed, Jun 13, 2001 at 10:29:30AM -0700, Rick O'Shaughnessy wrote:
> 
> I set up a .netrc in ~ with the following:
> 
>   machine   machine_name
>   login     login_id
>   password  something_secret
> 
> ...then I don't need to authenticate through the script at all.
> 
> Check netrc(5).
> 
> Rick
> 
> 
> Jay Strauss wrote:
> > 
> > Is there anyway to ftp within a shell script.  I can't make it past the
> > login.  for example:
> > 
> > #!/usr/bin/ksh
> > ftp lawprd01<<EOF
> > jstrauss
> > password
> > EOF
> > 
> > > ./tmp
> > Password:Name (lawprd01:jstrauss):
> > Login incorrect.
> > Login failed.
> > ?Invalid command
> > 
> > Jay Strauss
> > [EMAIL PROTECTED]
> >

Reply via email to