![]() |
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 |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| mtime | ravi raj kumar | Shell Programming and Scripting | 7 | 03-01-2007 08:54 PM |
| mtime help!!!!! | scooter17 | UNIX for Dummies Questions & Answers | 2 | 09-12-2006 02:24 PM |
| find . -mtime | topcat8 | UNIX for Dummies Questions & Answers | 1 | 04-26-2006 10:55 AM |
| find -mtime off by one day? | ceanntrean | UNIX for Dummies Questions & Answers | 4 | 08-24-2005 07:46 PM |
| mtime vs ctime | moxxx68 | UNIX for Dummies Questions & Answers | 3 | 11-06-2004 10:57 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
What to do when mtime doesn't work?
I have a folder that I need to search for new files and copy on the latest. I've been using "-mtime -1" in my command line but it doesn't seem to work.
I've been meaning to fine a different script because files are dropped into the folder all day long and because of the -mtime, I've only be able to look for files once a day. Does someone have a better way for me to search this folder throughout the day to find and copy only the latest files? |
|
||||
|
Here's the command:
find . -type f -name "raw_file_*" -mtime -1 | cpio -iv <new directory> The problem is, when I run this it copies ALL the files in the directory instead of those that are created in 1 day or less. It's crude, cause what I really need is something to look for only NEW files and copy those. |
|
||||
|
So at the end of the script, have the script touch the same file again?
|
![]() |
| Bookmarks |
| Tags |
| cpio, mtime |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|