Sponsored Content
Top Forums Shell Programming and Scripting copy the latest file in the remote server's directory Post 302343032 by avronius on Tuesday 11th of August 2009 10:51:09 AM
Old 08-11-2009
Have you tried using scp instead of a nested ssh command? Here's an example below (without any ${} or {$})

Code:
### This is one line - broken down to improve readability
scp -rp REMOTE_USERID@REMOTE_HOSTNAME:SOURCE_FILE`ssh 
REMOTE_USERID@REMOTE_HOSTNAME ls -tr1 /SOURCE_FILE | tail -1` 
REMOTE_USERID@REMOTE_HOSTNAME:TARGET_FILE

I tested by running the following from myhost1:
Code:
scp -rp avronius@myhost2:/opt/home/avronius/misc/`ssh 
avronius@myhost2 ls -tr1 /opt/home/avronius/misc/ | tail -1` 
avronius@myhost2:/opt/home/avronius/misc/newfile

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Copy a file on remote server

I have ssh keys setup and running properly between two servers. I have a Korn shell script that is logging into the remote server and needs to backup the authorized_keys and/or authorized_keys2 files. The following syntax works perfectly ------------------------------------- ssh... (1 Reply)
Discussion started by: sunsysadm2003
1 Replies

2. UNIX for Advanced & Expert Users

Commands to copy a tar.gz file from a Remote Unix Server to Local Desktop.

Hi, Just wanted to know, how can I ftp/transfer/copy a (design.tar.gz) archive from a Unix Server (sdmc222.sdmc.cp-srv.com) which is at a remote location, to my Windows Desktop. Obviously, it is not possible at cmd prompt on my Windows using the following commands :- ftp... (3 Replies)
Discussion started by: marconi
3 Replies

3. Shell Programming and Scripting

Copy the latest file from one directory to another

Hi All, I am in the directory a/b/processed the files in this directories are -rw-r--r-- 1 owb users 330 Aug 8 chandantest.txt_08082008 -rw-r--r-- 1 owb users 220 Aug 7 chandantest.txt_07082008 -rw-r--r-- 1 owb users 330 Aug 6... (3 Replies)
Discussion started by: chandancsc
3 Replies

4. Shell Programming and Scripting

Copy the latest file to a directory

Hi Team, I wish to copy the latest file of pattern "MyFile*" to some other location. I need to do all the operation in a single command separated by |. ls -rt <MyFile*> | tail -1 | <copy command>. How can I do? Please help me. Thanks, Kanda (2 Replies)
Discussion started by: spkandy
2 Replies

5. UNIX for Advanced & Expert Users

How to copy a file from remote server and preserve timestamp

Hi How to copy a file from remote server and preserve timestamp. Please not, i have to pass username and password to connect to the remote server in the shell script. Can this be achieved with simple ftp ? are there any options in ftp ? Thanks (4 Replies)
Discussion started by: skumar75
4 Replies

6. Shell Programming and Scripting

How to FTP the latest file, based on date, from a remote server through a shell script?

How to FTP the latest file, based on date, from a remote server through a shell script? I have four files to be FTP'ed from remote server. They are of the following format. build1_runtime_mmddyyyy.txt build2_runtime_mmddyyyy.txt build3_runtime_mmddyyyy.txt buifile_count_mmddyyyy.txt ... (9 Replies)
Discussion started by: imran_affu
9 Replies

7. Shell Programming and Scripting

Copy latest files from another server

Hi, I wanted to copy monthly generated csv file(s)( of latest date) at one server to my current server. So I wrote the following script, but does not work. The script is invoked on my current server Can you please help? !/bin/ksh #. /apps/comp/ cd /apps/di/dev/import/paper ssh hpqad02... (3 Replies)
Discussion started by: Alok Ranjan
3 Replies

8. UNIX and Linux Applications

Need to copy the latest file from Unix server to Shared folder

Hi All, One job in unix server will generate .csv files daily. I need to copy the latest of these .csv file from the unix server to the shared drive/folder in windows through unix script. My shared folder will look something like W:\some folder(for example). Could any one of you please help... (3 Replies)
Discussion started by: jaya@123
3 Replies

9. UNIX for Dummies Questions & Answers

Checking files in remote server and decide to copy file or not

Hi there, I have a problem in my script, I need to check whether file exists in remote server or not, if the file exists, then stop copy else copy the file to the server.. my code is something like this while read $server do if ssh $server "cd $directory_name; if ; then echo "Error:... (2 Replies)
Discussion started by: beezy
2 Replies

10. Shell Programming and Scripting

How to get the latest file from a directory in Server B to Server A?

ssh user@hostnameB cd /home/oracle latest_file_target=$(ls -trp -I "*.pd.Sat" -I "*.pd.Lag" -R | grep -v "/.pd" | tail -1) scp -r $latest_file_target user@hostnameA:$TARGET_DIR/ exit (1 Reply)
Discussion started by: ahmed.vaghar
1 Replies
RFCP(1) 							Rfio User Commands							   RFCP(1)

NAME
rfcp - Remote file copy SYNOPSIS
rfcp [ -s size ] [ -v2 ] filename1 filename2 rfcp [ -s size ] [ -v2 ] filename directory On Windows only: rfcp [ -a ] [ -b ] [ -s size ] [ -v2 ] @command_file DESCRIPTION
The remote file I/O copy program provides an interface to the shift remote file I/O daemon (rfiod) for transferring files between remote and/or local hosts. Each filename or directory argument is either a remote file name of the form: hostname:path or a local file name (not containing the :/ character combination). The standard input is supported with the - character. Then directory in output is not supported. OPTIONS
-a tells rfcp that the source file is ASCII text (Windows/NT only) -b tells rfcp that the source is a binary file (Windows/NT only) -s size If specified, only size bytes will be copied -v2 If specified, forces the RFIO V.2 protocol. Otherwise, V.3 (streaming mode) is used. RETURN CODES
0 Ok. 1 Bad parameter. 2 System error. 3 Unknown error. 16 Device or resource busy. 28 No space left on device. 196 Request killed. 198 Stager not active. 200 Bad checksum. SEE ALSO
rcp(1), rfiod(1) AUTHOR
LCG Grid Deployment Team LCG
$Date: 2005/03/31 13:13:01 $ RFCP(1)
All times are GMT -4. The time now is 06:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy