• 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!

numpty sftp question

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    numpty sftp question

    I have a script that I want to use to put multiple files via sftp.
    The script is as follows (from memory )

    Code:
    #!/bin/bash
    
    myftpuser=”blahftp”
    myftpserver=”blahblah.dyndns.org"
    
    touch sftp_batch
    for files in `ls -1 $1` 
    do
    {
    echo "put $files" >> sftp_batch
    }
    done
    echo "quit" >> sftp_batch
    
    sftp -b sftp_batch $myftpuser@$myftpserver
    
    rm sftp_batch
    When I run the first script and pass a directory as parameter the sftp_batch file created looks like;

    put file1
    put file2
    put filex
    quit


    Which is what I expected.

    BUT it only puts the first file on the server.

    WTF am I missing?

    Local box is Mac, sftp server is Ubuntu, no issues with authentication or connectivity as the first file goes across fine.

    TIA Pondy.
    Last edited by Pondlife; 15 June 2011, 09:22. Reason: typo

    #2
    I'm such a knobhead.

    Was missing a. echo "lcd $1" line in the file.

    All works now.

    Comment

    Working...
    X