Problem with SFTP script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Problem with SFTP script
# 1  
Old 02-09-2010
Problem with SFTP script

Hi All,

I can log in properly with my sftp handshake with the script, but can not get it to execute the lines of code for get commands within the script. Is there anything special with SFTP we need to do to make this work. I have went and looked on the message board but did not find anything quite specific to this.

Here is all I am trying to do(login id x'ed & addr changed )
Code:
sftp xxxxx@123.45.67.89
   ascii
   get rec1.dat
   get sfsum.dat
   quit

It recognizes nothing after the sftp xxx.123.45.67.89.

Any ideas would be appreciated!

Bill

Last edited by Scott; 02-09-2010 at 11:11 AM.. Reason: Code tags
# 2  
Old 02-09-2010
Code:
sftp xxxxx@123.45.67.89 << EOF
   ascii
   get rec1.dat
   get sfsum.dat
   quit
EOF

# 3  
Old 02-09-2010
You must use a "here script" in your script sh...

Code:
ftp -n  << EOF
open  "your ip"
quote user "your user" 
quote pass "your pass"
ascii
get your file
bye
EOF

# 4  
Old 02-09-2010
scottn,

Your way worked. Thanks! Was able to go out and pull in the files I needed. Just needed to terminate the lines so It knew to read next.
Again........many THANKS!!!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash - sftp simple script problem

Hello, when running the scripts below I am not getting message bb2. Can you please help? #!/bin/bash TLOG=/tmp/bb/amatest.log FTPRESULTS=/tmp/bb/amlist export TLOG FTPRESULTS >$TLOG >$FTPRESULTS echo bb1 sftp -oPort=2222 XXXXXXXXXXXXX@sftp.userssedi.com <<EOF cd... (5 Replies)
Discussion started by: biljana
5 Replies

2. HP-UX

SFTP problem in HP UX

Dear All, Previously we push file using ftp in outside node. Now we try sftp, but connection is not established. I am provide you the debug log. Any idea to solve the issue? tabs@tabsdb02:/ccbs/users/tabs$ sftp -vvv e132079@205.140.6.188 OpenSSH_5.8p1+sftpfilecontrol-v1.3-hpn13v7,... (0 Replies)
Discussion started by: makauser
0 Replies

3. Shell Programming and Scripting

Problem with sftp

I have an sftp script which is uploading file into a directory which is not specified wth the cd command . For example: sftp sftpserver >>lcd /abc >>cd /tmp/bef >> put /abc/abc.txt /tmp/bef/abc.txt Uploading file from /abc/abc.txt to /xyz/wxy/tmp/bef/abc.txt >>quit The file is getting... (2 Replies)
Discussion started by: NP1
2 Replies

4. Shell Programming and Scripting

Problem using sftp

I want to execute shell script with in sftp session for remote server. like i have a shell script test.sh that is on local server.i want to execute like sftp user@192.168.56.10 sftp> test.sh ---execute for remote server not for local server. Please help me for this issue (2 Replies)
Discussion started by: SAUD PASHA
2 Replies

5. Shell Programming and Scripting

sftp script - problem removing files remotely

Hello all, After searching through the similar topics and not finding a working solution, I decided to join and post my question (and maybe kill time and help other users). Essentially I am trying to get a file from the sftp and then delete it after the file is pulled. all the sftp commands... (3 Replies)
Discussion started by: MarcMaiden
3 Replies

6. Shell Programming and Scripting

SFTP-how to log individual sftp command error while executing shell script

Hi, I have situation where i need to automate transferring 10000+ files using sftp. while read line do if ; then echo "-mput /home/student/Desktop/folder/$line/* /cygdrive/e/folder/$line/">>sftpCommand.txt fi done< files.txt sftp -b sftpCommand.txt stu@192.168.2.1 The above... (1 Reply)
Discussion started by: noobrobot
1 Replies

7. UNIX for Dummies Questions & Answers

Problem automating sFTP transfer using script in cron

Hi Newbie here I am having problems with automating sFTP transfers. Just to save time - SCP is not an option as sFTP is stipulated by controllers of far end server. Ineed to automate sFTP transfer of a single file, once a day to a remote server to which i have no control over. I am using:... (6 Replies)
Discussion started by: robbien
6 Replies

8. Shell Programming and Scripting

Problem with SFTP...

Hi, Here is my problem::confused: Daily my ETL process will create 4 (Four) Flatfiles in unix box. Upon creation of the flatfiles, I need to do "SFTP" the files to a "Remote Server". Sometimes While doing SFTP, the files get trucated due to it's size. Now I would like to design a Korn... (3 Replies)
Discussion started by: npk2210
3 Replies

9. Shell Programming and Scripting

problem in making sftp script

Dear all I am bit new to shell scripting . I am implemented autossh between two sun solaris machines , so that when I use sftp it will not ask for the password. Now I need to make shell script in which I have to transfer files from one server to another server automatically through root... (8 Replies)
Discussion started by: girish.batra
8 Replies

10. Cybersecurity

sftp problem

Hi, I'm in the process of writting some scripts using sftp2 on a HP UX 11.11 machine. I've found that when I do an 'ls' command , even when in batch mode, it asks for me to 'press any key to continue or q to quit' after a screenful of data. Of course in batch mode this cause the script to hang.... (0 Replies)
Discussion started by: sudojo
0 Replies
Login or Register to Ask a Question