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
- What Popular Apps Were Built With C/C++. Why Other Programming Languages Would Not Suit? - January 9, 2025
- Top 11 DevOps consulting companies in 2024. - January 8, 2025
- Atlassian Jira Demo - January 4, 2025