Différences
Ci-dessous, les différences entre deux révisions de la page.
| Prochaine révision | Révision précédente | ||
| info:recentlychanged [2023/03/13 14:27] – créée radeff | info:recentlychanged [2023/03/13 14:30] (Version actuelle) – radeff | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ====== | + | ====== fichiers modifiés |
| + | ===== il y a moins de 30 minutes ===== | ||
| find -type f -and -mmin -30 | find -type f -and -mmin -30 | ||
| - | il y a 1 jour: | + | ===== il y a 1 jour ===== |
| find . -type f -and -mtime -1 | find . -type f -and -mtime -1 | ||
| + | |||
| + | ===== fichiers php modifié il y a plus d'une minute et dans les 3 dernières heures (60*3 minutes) ===== | ||
| + | find . -mmin +1 -mmin -180 -name " | ||
| + | |||
| + | ===== fichiers modifié hier ===== | ||
| + | find . -mtime -1 | ||
| <note tip>Voir aussi cet excellent article: [[https:// | <note tip>Voir aussi cet excellent article: [[https:// | ||