Using the find command in Linux with examples

Read the full article: Using the find command in Linux with examples

This find command guide is a follow-up of my previous 90 Linux Commands frequently used by Linux Sysadmins article. Every week, or as time allows, I will publish articles on the ~ 90 commands geared toward Linux sysadmins and Linux power users. Let’s continue this series with the find command. The find command is part of findutils which… continue reading.
1 Like

find /home/you -name "*.txt" -mtime -60 -print

-60 is 60 days. You can find more info here::
https://www.cyberciti.biz/faq/howto-finding-files-by-date/

This should help. You can adjust it for your liking.

1 Like

+1 @Ben .

Since it’s missing, I will add that example to the list of find command examples.

1 Like

Welcome to the community!

2 Likes

Thank you. This works.

1 Like