Sftp transfers file partially


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Sftp transfers file partially
# 8  
Old 12-10-2018
Sftp transfers file partially

Hi ,

I tried :
Code:
/usr/bin/rsync -qpavzh --rsh="/usr/bin/sshpass -f '/usr/local/rsync/.info' ssh -o StrictHostKeyChecking=no -l username" username@myserver.com:/data/directory_to_sync/patch/file1.zip /data/directory_to_sync

1) /usr/bin/sshpass: No such file or directory
2) I need to copy on one zip file like in this case /data/directory_to_sync/patch/file1.zip , I donot want to sync the complete directory .
# 9  
Old 12-10-2018
Yes, that is because you must set up all the right parameters.

You cannot just cut-and-paste my comment / example to you and expect it to work on your server with your userids, passwords, commands and paths.

You must install sshpass, set up your password, paths, etc. Do you not know that? You must read the messages (error messages) and configure your server youself.

I am surprised that you would not know this basic thing about working on a server.

You don't need to do the exact same command as me. I gave you only an example.

You need to learn what you are doing if you are going to be working on a server.
# 10  
Old 12-10-2018
Hey, I have an idea..... maybe you could watch some YT videos on how to set up rsync on a server?

Code:
https://www.youtube.com/results?search_query=rsync

Then, you can learn first and ask questions here after you acquire some very basic knowledge.

Thanks

PS: You can user rsync to transfer a single file or an entire website.... but you need to learn these utilities yourself first.

Based on your questions and lack of basic server admin knowledge, I highly recommend you watch some YT video tutorials!

Also, you can enter rsync into the search bar at the top of this page and read myriad discussions on rsync here at unix.com.

I just did, and here are the results:

Quote:
Showing results 1 to 25 of 500
Cheers.
# 11  
Old 12-10-2018
Hi ,

I fixed my code :

Code:
expect "sftp>"
 set timeout -1
 send "get $SOURCE_FILE $TARGET_DIR\r"

It works fine
# 12  
Old 12-10-2018
There you go ... proving all things are possible if you apply your mind to the situation at hand.

In a parallel world there is a user on unix.com "Asad from India" who is using rsync .... and in another parallel universe the same user got angry and never logged in again.

All things are possible .... Smilie It's up to us.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Pls Help: SFTP Error Handling for transfers

I am working on a shell script where after making sftp connection to a remote server the file are being transferred. The problem is how to capture return code for the file which is missing at the remote location. I have tried to capture the return code which return value of "0" even the transfer of... (4 Replies)
Discussion started by: Khan28
4 Replies

2. Shell Programming and Scripting

Identify failed file transfers during SFTP

Hi All, I have a pretty demanding requirement for an SFTP script I have been trying to put together. I have nearly 100 files (all with the names staring with T_PROD) generated in my local server daily. I need to transfer each of these files to a remote server via SFTP (that's a client... (6 Replies)
Discussion started by: Aviktheory11
6 Replies

3. Shell Programming and Scripting

Command / script to partially rename file

Hi I have numerous files names product_host_result_B1000842.txt product_host_result_B1000847.txt product_host_result_C1000842.txt product_host_result_C1000848.txt etc. I need them renamed so that the 'product_host_result' becomes 'output_product_host' but the rest of the filename is... (6 Replies)
Discussion started by: Grueben
6 Replies

4. UNIX for Dummies Questions & Answers

Script partially executes??

Hi All, I am calling a shell script from another shell script, however, it only executes part of it (the echo commands only). What could be some causes for that? For example: ShellScriptA.sh: ... ... ... . ShellScriptB.sh ShellScriptB.sh contents: echo date echo... (7 Replies)
Discussion started by: DBnixUser
7 Replies

5. Programming

Automatic SFTP transfers using OpenSSH on Windows and C#

I would like to create console application in c# to automate the process of downloading some files from a SFTP server to my local hard drive at a set time each week/day. SFTP Server installed OpenSSH for windows and client machine also. Any ideas how I could do such a task? or sample code. ... (0 Replies)
Discussion started by: sufiiyan
0 Replies

6. Shell Programming and Scripting

How to output the partially equals

Hello i have 2 files: a.out 10.1.1.1 james.franco 10.1.1.3 google.gol 10.1.1.14 yahoo.bol b.out 10.1.1.1 10.1.1.3 10.1.1.45 I need to see an output just with: 10.1.1.1 james.franco 10.1.1.3 google.gol Thankz in advance!! (2 Replies)
Discussion started by: danielldf
2 Replies

7. Shell Programming and Scripting

Is it possible to partially clear the terminal?

The clear command specifically says it can only clear the entire terminal display. There are no arguments. So I'm wondering if there are any work arounds. Carriage return does not work for this as it only moves the cursor to the beginning of the line we're on. And obviously NL only goes down. If... (1 Reply)
Discussion started by: FunkyLich
1 Replies

8. UNIX for Advanced & Expert Users

tunneling commands and file transfers through established ssh connection

Hi - I frequently run commands, and transfer files to/from a host that uses SecurID ssh authentication. It is a real pain to have to enter the authentication information every time I want to interact with this host. I am wondering if there is a way to establish a one-time ssh connection to this... (2 Replies)
Discussion started by: cpp6f
2 Replies

9. Shell Programming and Scripting

How to partially replace variable value?

I have variable $2 whose value is expdp_SDW_MSTR_VMDB.par I want to replace three characters from right (par) with (log) Input --> expdp_SDW_MSTR_VMDB.par Output --> expdp_SDW_MSTR_VMDB.log Thanks Deep (2 Replies)
Discussion started by: deep.singh
2 Replies

10. Shell Programming and Scripting

reas a file partially line by line

I need to read a file fron nth to n+m line by line using bash ie while read line do # soem stuff done <<file But The file is so big I am only intersted in reading ceratin portion of the file ie from nth line to mth line where m is alwasy greatr than n (2 Replies)
Discussion started by: jojan
2 Replies
Login or Register to Ask a Question