- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Identifying files with size larger than 20 Mb
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
02-22-2007 03:01 AM
02-22-2007 03:01 AM
Could you please guide me.
My objective is to identify three attributes 1.>file size 2.>time stamp creation 3.>list of files .
i used # find . -size +20000000c -print. It give me list of files .
What option I can use with du to get all three attributes in one command.
Many Thanks !!!
Regards
harish
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 03:07 AM
02-22-2007 03:07 AM
Solution# find . -size +20000000c | xargs ll -d
This will do an ll for all files that match the 20MB size.
You must remember that it is impossible to know for certain when a file was created in Unix. You can know the last modified time, which is what ll displays by default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 08:47 PM
02-22-2007 08:47 PM
Re: Identifying files with size larger than 20 Mb
find . -size +20000000c -type f 2>dev.null|xargs ll
this listf only files dscrading errorr in case some files are not readable by you (i.e. in /tmp directory) listing the files obtained.
HTH,
Art
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 09:00 PM
02-22-2007 09:00 PM
Re: Identifying files with size larger than 20 Mb
find . -size +20000000c -xdev -exec ll {} \;
for check big files in sub directory also
AA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-22-2007 09:10 PM
02-22-2007 09:10 PM
Re: Identifying files with size larger than 20 Mb
For this
find . -size +20000000C -type f -exec ll {}\;
Regards
Reshma