We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd7243 commit 1f5c425Copy full SHA for 1f5c425
1 file changed
content/debian/delete_old.md
@@ -3,7 +3,7 @@ title = "Delete Old Files Automatically"
3
date = 2025-02-28
4
extra = { series = "Debian" }
5
taxonomies = { tags = ["Debian"] }
6
-updated = 2025-04-26
+updated = 2025-08-26
7
+++
8
9
# Explanation
@@ -20,10 +20,18 @@ See also [cron](@/debian/cron.md) for automating the command
20
21
# Preview output via print
22
23
+Format:
24
+
25
```sh
26
find PATH -mtime DAYS -type f -print
27
```
28
29
+Example
30
31
+```sh
32
+find . -mtime +90 -type f -print
33
+```
34
35
# Actual delete command
36
37
0 commit comments