![]() |
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 |
| list the files but exclude the files in subdirectories | shyjuezy | UNIX for Dummies Questions & Answers | 8 | 10-15-2008 02:42 PM |
| How to generate a 'kill' list | victorcheung | UNIX for Advanced & Expert Users | 10 | 05-15-2008 03:04 AM |
| List only the files | chandran.m | SUN Solaris | 5 | 12-06-2007 03:03 PM |
| Help generate report from log files | bucci | Shell Programming and Scripting | 4 | 08-24-2007 05:11 AM |
| how to generate a random list from a given list | mskcc | Shell Programming and Scripting | 3 | 05-30-2006 04:30 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
how to generate a list of files
Hello people
I need to find a way to generate a file that contains the names of all *.jpg files that were generated after a specific date The search should start in my current folder and recursively search inner folders It would be best to list the file names one below the other in the output file for example, list all the *.jpg files generated after Dec 13th at 5:00am any help would be appreciated regards |
|
|||||
|
See Jims' solution in unix command/s to find files older than 2 hours in a directory
Modify the find as Code:
find /dir/to/search -name '*.jpg' -newer somefile -print |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|