8 comments

  1. ole

    thanks..that helped !

  2. Scott McNeilly

    Thanks. That solved my problem. I had tried "ftp

  3. antz

    You may consider using "expect" for automating ftp, telnet etc.

  4. Ozh

    Antz » indeed, didn't know this, and it looks rather nice and simple to use. Thanks for the suggestion.

  5. dbuska

    how to use ftp behind proxy ftp or firewall, please give me the sample script. Thanks.

  6. Alfred Tong

    Yeah that works but to put it inside of a script, this is the solution:)

    ftp -ivn <<EOL
    open FTP_SERVER
    user USERNAME PASSWORD
    lcd /path/to/file
    put file
    bye
    quit
    EOL

  7. joe donner

    nice one. very helpful. thanks for sharing.

  8. Rohit

    simplest solution I found so far.. I'm an iSeries admin and know peanuts about Linux. I need to setup a small demo which involves FTP between various servers.. out of all soutions I came across this was the best for my purpose! Thanks a ton!!

Comments are closed.