sftp scripting


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sftp scripting
# 1  
Old 02-23-2005
Question sftp scripting

I am totally new to this forum so if I am asking this and it has already been asked I apologize, but I have yet to have time to figure out how to search effectively for answers in previous posts. I'll figure it out tomorrow I just wanted to get this out there in case there is someone with this knowledge just bubbling out of their head aching to share it.

ANYWAY:

I am trying to script an sftp cron job. My first hurdle was to get key authentication working so I wouldn't have to deal with the issues surrounding giving it a password from within a script. That was fun, and it works now. I was trying to treat it like ftp and use the EOF arguments to get it to read the commands but it is not working. Do I have to use a batch file to send commands to sftp in a script? If so does anyone know where I could get some examples of how to do that (ie make a batch file). Or if I don't have to use a batch file could someone point me toward some examples of how to script commands for sftp.
Thanks in advance,
New_Guru
# 2  
Old 02-25-2005
See scripting sftp - their example should get you going.
# 3  
Old 03-01-2005
Thanks RTM

I figured this out on my own before I had a chance to come back and check here again for a response. But thanks anyway, I was beginning to think this was one of those boards full of Smilie stuck up people Smilie who never answered the "new guys" questions. Glad to see it isn't.
Thanks again. Smilie
# 4  
Old 03-01-2005
We love new guys here.
In the future, if you figured something out, don't forget to post back what you did so you can help the next "new guy."
# 5  
Old 03-01-2005
To expand on dangral's remarks, the reason for the meager response is that we don't seem to have users with much experience in scripting sftp. When RTM mentioned that excellent link, I linked this thread to ftp scripting faq. We always appreciate it when a user who solves his own problem posts that solution here for the benefit of others. But that is especially true of this thread.
# 6  
Old 03-01-2005
Quote:
Originally Posted by New_Guru
I figured this out on my own before I had a chance to come back and check here again for a response. But thanks anyway, I was beginning to think this was one of those boards full of Smilie stuck up people Smilie who never answered the "new guys" questions. Glad to see it isn't.
Thanks again. Smilie
Absolutely ! You are indeed with the best group.
# 7  
Old 12-12-2005
What was the solution you came up with? I have a similar need and have not found any way to get this working.

Please post your script. Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

SFTP Scripting and Log capture

Hi All, Need help in below query, appreciate your help. We are changing a FTP process to SFTP ( passwordless SSH ) I had few queries on how to log the transfer details into a log file. ----------------------------------------------------- PUTLOGFILE= /xxx/ftp_log.log FAILPUTLOGFILE=... (0 Replies)
Discussion started by: aadarshtripathi
0 Replies

2. Shell Programming and Scripting

Sftp : not able to print the echo statements after the sftp transfer

I had the below sftp script working perfectly but the problem is I am not able to send the echo statements . #!/bin/sh echo "Starting to sftp..." sftp admin@myip << END_SCRIPT cd /remotepath/ lcd /localpath/ mget myfiles*.csv bye END_SCRIPT echo "Sftp successfully." echo echo... (11 Replies)
Discussion started by: scriptscript
11 Replies

3. Shell Programming and Scripting

Sftp in shell Scripting issue

I have the below code for ftping a file sftp "ogl@serverna,me"ogl@serverna,me <<EOF cd $path_on_the_server binary put $path_on_my_sever/filename.txt bye EOF Not sure is this works.but when i tried its asking for password .How i can avoid asking password and provide it in the... (5 Replies)
Discussion started by: shyamrad
5 Replies

4. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

5. 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

6. Shell Programming and Scripting

Sftp scripting

Dear All, I have script that get the files from sFtp server to Unix server. The script is below. -- Batch File (mybatch) cd Output get abc123.csv in/abc123.csv get def456.csv in/def456.csv get ghi789.csv in/ghi789.csv bye -- Script File sftp -b mybatch xyz@111.222.33.4 >... (1 Reply)
Discussion started by: samrio
1 Replies

7. AIX

SFTP Failed---Request for subsystem 'sftp' failed on channel 0

Hi, While I am trying SFTP my machine to another unix machine , it was working fine till 10 min back. But now i am getting the below error "Request for subsystem 'sftp' failed on channel 0" Could you please someone help me to solve or analyise the root cause... Cheers:b:, Mahiban (0 Replies)
Discussion started by: mahiban
0 Replies

8. Shell Programming and Scripting

SFTP scripting - help required

Hi all, First post so go easy guys....... I've seen this asked before on some other forums but never properly/fully answered. My problem involves the automation of an SFTP script sending from F-Secure (ssh2) HP-UX, to Windows FTP server (ssh2) running VShell. We've set up SSH keys but while... (8 Replies)
Discussion started by: b0bbins
8 Replies

9. Shell Programming and Scripting

Scripting multiple file "puts" in sFTP...

I need to send multiple files to a remote server via sFTP. I had everything set up to connect and send a single file automatically using a batch file and key authentication. Recently, however, the process has changed and we now need to send multiple files, one at a time, pausing for up to ten... (5 Replies)
Discussion started by: Cbish68
5 Replies

10. Shell Programming and Scripting

scripting guru's pls help me with scripting on AIX

can someone pls help me with the script for a files coming from one system to a particular directory and i want to write a script to move those files to another directory on different system by renaming the files... pls someone help me on this... thanking in anticipation.... (1 Reply)
Discussion started by: thatiprashant
1 Replies
Login or Register to Ask a Question