![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Auto copy for files from folder to folder upon instant writing | Bashar | UNIX for Advanced & Expert Users | 2 | 08-21-2008 03:44 PM |
| FTP command to search recursively in windows folder | lakshmis10 | Shell Programming and Scripting | 6 | 10-18-2007 06:09 AM |
| How can i move data files from a server to unix folder | shah2 | Shell Programming and Scripting | 1 | 03-01-2004 06:38 PM |
| how to copy/move folder on XP to Solaris? | simt | UNIX for Dummies Questions & Answers | 2 | 07-28-2003 01:01 PM |
| move files from folder thats are not empty | Steven | UNIX for Dummies Questions & Answers | 8 | 11-21-2001 10:05 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
How to move recursively into one folder
Hi,
I have a folder with a million subdirectories which all have a million files in them (some of them duplicates).. I am looking for the right program command to move all of the files out of the directories and into one folder-- and replace all of the duplicates.. If anyone has any ideas, that would be great. thanks! -patrick |
|
||||
|
Here, that should do it. All files having the same name will be overwritten but at the end, you will have only a copy of each file...
Code:
#!/usr/bin/sh
DES_DIR=name of the destination directory for the files to be copied
ORI_DIR=your original directory containing all subdirectories
cd $ORI_DIR
find . -type f -exec cp {} $DES_DIR \;
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|