Deleting a file from REMOTE Unix Server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Deleting a file from REMOTE Unix Server
# 1  
Old 10-22-2008
Deleting a file from REMOTE Unix Server

Hi All,

I have a requirement where i need to remove a file from Remote system. Can any one suggest me how to do this?

My requirement is, i need to archive the file in a separate system. If the remore system is having files older than 7 years, then i need to delete that files from the remote system. Files naming conventions having DATE in that so we can easily identify the files but can we delete a file on remote system through scripting?

Raamc.
# 2  
Old 10-22-2008
Using ssh, find and rm.
For the archiving, whatever you use for archiving too, tar, mv, cp, ... ?
# 3  
Old 10-22-2008
Using a script you could ftp the files to a local directory then create another ftp to delete them. Below is a script that I use:
Code:
ftp -in 00.00.00.00 <<End-Of-Session
user user_id pass_word
type ascii
cd outbound
lcd /lsf1/law/logan/OWENS/temp
mget *
quit
End-Of-Session
cat /lsf1/law/logan/OWENS/temp/* > /lsf1/law/logan/OWENS/OM810
if [[ -s /lsf1/law/logan/OWENS/OM810 ]]; then
   echo 'ftp -in 00.00.00.00 <<E-O-F' > /law1/lawson/logan/edi_bin/om810ftp
   echo 'user user_id pass_word' >> /law1/lawson/logan/edi_bin/om810ftp
   echo 'type ascii' >> /law1/lawson/logan/edi_bin/om810ftp
   echo 'cd outbound' >> /law1/lawson/logan/edi_bin/om810ftp
   cd /lsf1/law/logan/OWENS/temp/
   ls | while read filename
   do
     echo 'delete ' $filename >> /law1/lawson/logan/edi_bin/om810ftp
   done
   echo 'quit' >> /law1/lawson/logan/edi_bin/om810ftp
   echo 'E-O-F' >> /law1/lawson/logan/edi_bin/om810ftp
   . /law1/lawson/logan/edi_bin/om810ftp
   rm /lsf1/law/logan/OWENS/temp/*
   cp /lsf1/law/logan/OWENS/OM810 /lsf1/law/logan/edi_arch_inb/OM810.inb."$(date +%Y%m%d%H%M%S)"
else
    echo "File OM810 not found or is empty"
	return 12
fi
exit

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Get the remote server file size in UNIX

Hi All, I am trying to sftp, get a file from remote server. Post this we need to check the remote server file size or checksum value of the remote server file and compare it with the file size in the current server. But I am facing issue to get the remote server file size. Could you please... (2 Replies)
Discussion started by: abhi_123
2 Replies

2. Shell Programming and Scripting

Script connect to remote server, not find files and exit only from remote server, but not from scrip

I have a script, which connecting to remote server and first checks, if the files are there by timestamp. If not I want the script exit without error. Below is a code TARFILE=${NAME}.tar TARGZFILE=${NAME}.tar.gz ssh ${DESTSERVNAME} 'cd /export/home/iciprod/download/let/monthly;... (3 Replies)
Discussion started by: digioleg54
3 Replies

3. Shell Programming and Scripting

Do I require remote login access to a windows server to transfer files from a UNIX server

Hi All I need to transfer a file from a UNIX server to a windows server. I saw that it is possible to do this using scp command by looking at the forum listed below: ... (2 Replies)
Discussion started by: vx04
2 Replies

4. Shell Programming and Scripting

How to Append the output of a script running in remote server to a file in local server?

Hi guys, So i am in server1 and i have to login to server 2, 3,4 and run some script there(logging script) and output its result. What i am doing is running the script in server2 and outputting it to a file in server 2 and then Scp'ing the file to server1. Similarly i am doing this for other... (5 Replies)
Discussion started by: srkmish
5 Replies

5. Shell Programming and Scripting

FTP using script not working (for transfering file from a remote unix server to windows PC.)

hi, Im using the following code for FTP #!/usr/bin/ksh ftp -v -n "10.29.45.11" << cmd user "mahesva" "mahesva123" get rtl.tar quit cmd Below is the log when i run the above code ********************************** Connected to 10.29.45.11. 220 (vsFTPd 2.0.1) 530 Please login with USER... (20 Replies)
Discussion started by: dll_fpga
20 Replies

6. Shell Programming and Scripting

preserving the timestamp of a file when copied from remote server to local server using ftp

Hi, I need to copy few files from remote server to local server. I write a shell script to connect to the remote server using ftp and go to that path. Now i need to copy those files in the remote directory to my local server with the timestamp of all those files shouldnt be changed. ... (5 Replies)
Discussion started by: arunkumarmc
5 Replies

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

8. Shell Programming and Scripting

Transfer file from local unix server to remote server

want to remove this thread. thanks (2 Replies)
Discussion started by: indira
2 Replies

9. HP-UX

Transfer file from local unix server to remote server

want to remove the thread thanks (2 Replies)
Discussion started by: indira
2 Replies
Login or Register to Ask a Question