• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "Numpty mget FTP command question."

Collapse

  • NoddY
    replied
    Originally posted by DogTown View Post
    wget -r
    I too recommend wget if you're stuck on the command line otherwise Filezilla for a GUI.

    Leave a comment:


  • DogTown
    replied
    wget -r

    Leave a comment:


  • chris79
    replied
    http://www.unix.com/shell-programmin...here-last.html


    HTH.

    Leave a comment:


  • expat
    replied
    Originally posted by wc2 View Post
    Thanks

    That works for all the files.

    Is there a way of telling to copy sub folders also?
    If you can execute it on the sending machine, you could use a find to get all directories, pipe into xargs and an ftp with an mput; or a find to get all files and into a straight ftp. Chances of coding right first time????

    Sorry but have to go for flight.

    Leave a comment:


  • DaveB
    replied
    Originally posted by wc2 View Post
    Thanks

    That works for all the files.

    Is there a way of telling to copy sub folders also?
    not from the comand line, but any of the gui ftp clients will do recursive folders for you.

    Leave a comment:


  • TheBigD
    replied
    Originally posted by wc2 View Post
    Thanks

    That works for all the files.

    Is there a way of telling to copy sub folders also?
    I don't think so...I seem to remember doing the same thing a while back, and in the end resorted to tar/gzipping the entire directory before transfer.

    Leave a comment:


  • wc2
    replied
    Originally posted by TheBigD View Post
    ftp <servername>
    username: root
    password:
    ftp> bin
    ftp> hash
    ftp> cd /
    ftp> prompt
    ftp> mget *


    HTH
    Thanks

    That works for all the files.

    Is there a way of telling to copy sub folders also?

    Leave a comment:


  • Durbs
    replied
    If i need to script FTP, i just perform the action using a client such as Filezilla to do it first as it displays the commands executed in the query window. You can just copy these.

    Not got a copy to check whether it will execute an 'all' command or just render a get for each file though.

    Leave a comment:


  • TheBigD
    replied
    ftp <servername>
    username: root
    password:
    ftp> bin
    ftp> hash
    ftp> cd /
    ftp> prompt
    ftp> mget *


    HTH

    Leave a comment:


  • wc2
    started a topic Numpty mget FTP command question.

    Numpty mget FTP command question.

    Can someone provide the syntax for the mget command to copy every file and folder in the current remote folder to a local folder?

    Current script

    open #######
    username
    password
    cd ..
    cd ..
    cd var/www/html
    LCD c:\test

Working...
X