scmuser created the topic: shell script to find all new files added
Hi,
i am looking for a shell script to find all new files added or modified after a certain date & Time??
Any help?
mnanjala replied the topic: Re:shell script to find all new files added
This should solve the problem
find . -type f -mtime -7 -print
Here,
* -mmin n (modification time in minutes)
* -mtime n (modification time in days)
* -newer file (modification time newer than modification time of file)
* -daystart (adjust start time from current time to start of day)
* Plus alternatives for access time and ‘change’ or ‘create’ time.
Or thinkikng
touch can be used
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024