Showing posts with label AIX - File Management. Show all posts
Showing posts with label AIX - File Management. Show all posts

Wednesday, May 20, 2009

AIX - File Management

AIX - File Management

procfiles

procfiles -n `ls /proc` : lists all the process and files they have open.

find

find / -xdev -type f -mtime -1 -ls | sort +6nr | head -n 20 : lists the top-20 largest files in / that where used within the last 24 hours.