find, remove, and ftp......


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers find, remove, and ftp......
# 1  
Old 06-24-2002
find, remove, and ftp......

I have a script that is run each night by cron. This script generates an extract then places it into an 'extracts' folder and also ftp's a copy to another server.

I have set up the script to remove any files in the extracts folder greater than 28 days old (this occurs each time the script is run). This is the command.

find ${WORKdir}/extracts/ -mtime +29 -exec rm {} \; &&

Now I also want this function to occur in the folder on the other server - preferably using ftp. Here is the ftp activity I already have.

if [ -s ${EXTfile} ]
then
ftp -n ${FTPserver} << cmd
user ${FTPid} ${FTPpwd}
cd ${FTPlocation}
lcd ${WORKdir}/extracts
put ${SHORTfile}
quit
cmd
fi

Can FTP do anything like this - by using unix commands somehow?

Last edited by peter.herlihy; 06-25-2002 at 12:29 AM..
# 2  
Old 06-25-2002
You could create a file of the filenames you have deleted on your local host & then use a script to create a list of commands for ftp

eg. (filelist is the list of deleted files)

echo user ${FTPid} ${FTPpwd} > ftpfile
for name in `cat ${WORKdir}/extracts/filelist `
{
echo delete $name >> ftpfile
}
echo quit >> ftpfile



you can then do

ftp -n ${FTPserver} < ftpfile

to delete them


you'll have to use the absolute file names in the example above.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bash to remove find and remove specific extension

The bash below executes and does find all the .bam files in each R_2019 folder. However set -x shows that the .bam extension only gets removed from one .bam file in each folder (appears to be the last in each). Why is it not removing the extension from each (this is $SAMPLE)? Thank you :). set... (4 Replies)
Discussion started by: cmccabe
4 Replies

2. Shell Programming and Scripting

Remove ./ from result when i do find

Hi All, When i do find command i am getting result which append ./ before the file name. For example if i am trying to search aaa.txt in current directory i am using find like this: $ find . -name aaa.txt result: ./aaa.txt Now i want to remove "./" from the file name. Can some body... (5 Replies)
Discussion started by: VasuKukkapalli
5 Replies

3. Shell Programming and Scripting

Find and Remove

I am trying to get multiple strings removed or replaced with space in a file, for individual strings I have been using the following and it works sed -e 's/#*#*//g' test_1.dat > test_2.dat what needs to be done if multiple strings are to be removed? For example I will need to remove the... (3 Replies)
Discussion started by: btt3165
3 Replies

4. Shell Programming and Scripting

Remove files using FTP

I am trying to remove files using FTP and used the commaned delete *.* mdelete *.* to remove the files. I am receiving an error. what is the command to delete all the files in the directory through FTP (2 Replies)
Discussion started by: bond2222
2 Replies

5. Shell Programming and Scripting

find regex and remove #

hi , how do i remove # from a line where i found regex.. don't need to remove all the line.. only remove comment.. (3 Replies)
Discussion started by: Poki
3 Replies

6. Shell Programming and Scripting

To remove multiple files in FTP

We have a files in FTP server..... after getting the files from FTP by mget *.* i hav to remove all files (multiple files) at once... is there any command to delete multiple files at once (2 Replies)
Discussion started by: nani1984
2 Replies

7. UNIX for Advanced & Expert Users

Using FTP to check whether file is completely FTP... plz find the description below

Hi, We have some clients who will place huge files in to one of the remote server. And the shell script written in our local server to retrieve client files (using FTP) placed on one of the remote server of ours by clients. My question Is there any FTP command/script to check from my local... (1 Reply)
Discussion started by: nmsrao
1 Replies

8. UNIX for Dummies Questions & Answers

Find and remove command - can you tell me exactly what its doing?

find /app01/tomcat_local -name *jsp* -type f -exec rm -r {} \; I would assume the above is just deleting any *jsp* below the /app01/tomcat_local directory - is this correct as its seems to delete more than I expect.... (1 Reply)
Discussion started by: frustrated1
1 Replies

9. UNIX for Dummies Questions & Answers

FIND and REMOVE HELP NEEDED!!!

Hello, I am aware of that Find command finds certain files and remove command removes certain files. However, is there a way to Find certain DIRECTORY and remove that DIRECTORY? thank you (3 Replies)
Discussion started by: scooter17
3 Replies

10. UNIX for Dummies Questions & Answers

Find and Remove help needed!!!!

thank you for the help. (1 Reply)
Discussion started by: scooter17
1 Replies
Login or Register to Ask a Question