
find:ai:f5504
find all files that are more than 180 days older and list them using ls
$ find . -type f -mtime +180 -exec ls -l {} \;
try on your machine
Find all files in the current directory and its subdirectories that are more than 180 days old and list them using ls command
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.
Questions that are answered by this command:
- find all files that are more than 180 days older and list them using ls ?