M
M
modxyou2018-03-29 12:48:49
Debian
modxyou, 2018-03-29 12:48:49

How in Lunix (Debian) to delete all subfolders for the last 3 months?

Good afternoon!
I have a lot of subcategories with pictures in my pictures folder as well.
Can you please tell me how to delete all subfolders created only for the last 3 months, for example?
Thanks

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Saboteur, 2018-03-29
@saboteur_kiev

find /yourdirectory -type d -ctime -180 -delete
starting from /yourdirectory looking for all folders (type -d) that were created (ctime) within the last 180 days

D
Dmitry, 2018-03-29
@Tabletko

man find
find ./ -ctime 180 -delete

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question