![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Getting modified time & filename only | senthil_seera | Shell Programming and Scripting | 4 | 04-13-2008 09:50 AM |
| deleting files based on file name and modified time | ammu | UNIX for Dummies Questions & Answers | 1 | 01-22-2008 07:09 AM |
| Find files based on time | budrito | UNIX for Advanced & Expert Users | 4 | 10-08-2004 02:18 AM |
| find filename based on file content | kollerj | UNIX for Dummies Questions & Answers | 4 | 06-02-2001 10:31 AM |
| search for hardlinks based on filename via find command | hunternjb | UNIX for Dummies Questions & Answers | 2 | 03-26-2001 09:07 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Find and store files based on FileName and Modified Time
Hi,
I am currently using the following command: files=(ls enuCPU??.????.exp ntuCPU??.????.exp) I need to now change the commmand to store the file names of files that have been modified before datetime equal to say '02/16/2008 20:30:00' What could I use? |
| Forum Sponsor | ||
|
|
|
|||
|
Quote:
To be complete: find . ! -newer touchfile -name enuCPU\?\?.\?\?\?\?.exp -o -name ntuCPU\?\?.\?\?\?\?.exp -print Wildcards need to be escaped to avoid interpretation by the shell. |
|||
| Google The UNIX and Linux Forums |