HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to find out files created today i.e since midn...
Operating System - HP-UX
1833475
Members
3046
Online
110052
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2003 08:03 AM
04-23-2003 08:03 AM
Hi.
I am trying to identify files that are created today, I have used find with -mtime 0 and this identifies files created in the last 24 hours. I only want those files created since midnight.
Thanks in advance
Dave
I am trying to identify files that are created today, I have used find with -mtime 0 and this identifies files created in the last 24 hours. I only want those files created since midnight.
Thanks in advance
Dave
why do i do this to myself
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2003 08:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2003 08:14 AM
04-23-2003 08:14 AM
Re: How to find out files created today i.e since midnight
Don't think you can find out creation date, just the modified date.
ls -t
-t Sort by time modified (latest first) before sorting
alphabetically.
ls -t
-t Sort by time modified (latest first) before sorting
alphabetically.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2003 08:20 AM
04-23-2003 08:20 AM
Re: How to find out files created today i.e since midnight
You would ..
# cd /tmp
# touch 04230000 refa
# ll refa
..... 0 Apr 23 00:00 refa
Example of using the find on /var ..
# find /var -type f -newer /tmp/refa -exec ll {} \;
# cd /tmp
# touch 04230000 refa
# ll refa
..... 0 Apr 23 00:00 refa
Example of using the find on /var ..
# find /var -type f -newer /tmp/refa -exec ll {} \;
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP