- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- list file created today
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
10-17-2003 11:45 AM
10-17-2003 11:45 AM
I need to list the files that has been created today. How do I do that.
Can anyoine please help me out in this
-Andy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2003 11:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2003 02:46 AM
10-19-2003 02:46 AM
Re: list file created today
ls -ltr is good one to if you want to work in one directory. ( not all system)
You see al but on the top you see the last created file's.
The solution from our colleague is beter one but you can use this one to see witch files are as last created.
success
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 04:44 AM
10-20-2003 04:44 AM
Re: list file created today
I have one more question. Is there any way to list out the files that has been created on a particular date. Say for instance there are 100s of files in a particular directory and I want to list the files that were created on Oct 17th.
Can anyone tell me how to accomplish this.
Thnaks,
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 04:53 AM
10-20-2003 04:53 AM
Re: list file created today
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 04:53 AM
10-20-2003 04:53 AM
Re: list file created today
Grep and ls should work:
ls -l /dirname |grep 'Oct 17'
Be forewarned that a single digit day will have two spaces between month and day.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 04:54 AM
10-20-2003 04:54 AM
Re: list file created today
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 05:03 AM
10-20-2003 05:03 AM
Re: list file created today
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-20-2003 05:14 AM
10-20-2003 05:14 AM
Re: list file created today
for a particulare date in a sub directory I would use is awk
ls -l | awk '{if ($6 == "Oct" && ($7 == "17" ) print $NF,}'
will give you the list of fiels created for that date.
if you want you can > to a file and use that as a argument for you work.
Manoj Srivastava