Skip to content

Commit 1f5c425

Browse files
committed
Add example of command to show more than
1 parent abd7243 commit 1f5c425

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

content/debian/delete_old.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title = "Delete Old Files Automatically"
33
date = 2025-02-28
44
extra = { series = "Debian" }
55
taxonomies = { tags = ["Debian"] }
6-
updated = 2025-04-26
6+
updated = 2025-08-26
77
+++
88

99
# Explanation
@@ -20,10 +20,18 @@ See also [cron](@/debian/cron.md) for automating the command
2020

2121
# Preview output via print
2222

23+
Format:
24+
2325
```sh
2426
find PATH -mtime DAYS -type f -print
2527
```
2628

29+
Example
30+
31+
```sh
32+
find . -mtime +90 -type f -print
33+
```
34+
2735
# Actual delete command
2836

2937
```sh

0 commit comments

Comments
 (0)