Pour ceux qui ont un system à jour il y a bien cette solution
1 2 3 4 5 6 7 8
| GNU/find latest version:
find /path/to/dir -newermt "date"
find /path/to/dir -newermt "Feb 07"
find /path/to/dir -newermt "yyyy-mm-dd"
## List all files modified on given date
find /path/to/dir -newermt yyyy-mm-dd ! -newermt yyyy-mm-dd -ls
### print all *.pl ###
find /path/to/dir -newermt "yyyy-mm-dd" -print -type f -iname "*.pl" |
ou encore
find . -name *.jpg -printf %TY-%Tm-%Td\n |egrep 2013-02-07″
Mais je suis chez le client donc je n'ai pas cette toute dernière option..
Partager