WebHosting

Thursday, February 1, 2024

Finding files with extensions using find command and files which are 90 days old



find /path/to/search -mtime +90 -type f \( -name "*.txt" -o -name "*.pdf" -o -name "*.doc" \)

This will find all the files in directory /path/to/search which are 90 days old and files having extention as txt, pdf, doc. 

Like this you can add many extention and specify time accordingly to find specified days old files.


No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

Warp AI Terminal 🔥 | The Future of Coding? Agentic Dev Environment Explained!

  Warp AI Terminal 🔥 | The Future of Coding? Agentic Dev Environment Explained! What if your terminal could think, assist, and even act li...