The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM


UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Finding files in subdirectories from one location endl UNIX for Dummies Questions & Answers 2 08-20-2008 01:05 PM
copying files from one location to another based on a list rebornhonest UNIX for Dummies Questions & Answers 4 11-30-2007 12:32 PM
excutable script to copy a file to a different location. nazehcalil UNIX for Dummies Questions & Answers 4 12-21-2006 06:17 AM
Location of users cron files JimJim UNIX for Dummies Questions & Answers 3 01-25-2005 02:51 AM
Location of C files on a Unix Environment HelpMeIAmLost UNIX for Dummies Questions & Answers 2 12-05-2003 12:13 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 09-21-2008
Registered User
 

Join Date: Nov 2007
Posts: 24
Question copy files from one location to similar location

I need help in forming a script to copy files from one location which has a sub directory structure to another location with similar sub directory structure,

say location 1,

/home/rick/tmp_files/1-12/00-25/

here 1-12 are the number of sub directories under tmp_files and 00-25 are sub directories under each of directory 1-12

i need to copy files older than 30 days to similar location

/home/rick/new_files/1-12/00-25/

Can any one help me with the logic please.

Thanks in Advance
Reply With Quote
Forum Sponsor
  #2  
Old 09-21-2008
Moderator
 

Join Date: Feb 2007
Posts: 2,328
One (nice) way to do the job with cpio:

Code:
#!/bin/sh

cd /home/rick/tmp_files

find * -mtime +30 -print | cpio -pvdmu /home/rick/new_files
Regards
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 04:16 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0