This page (revision-1) was last changed on 29-Nov-2024 16:16 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 8 lines
# List the files in current directory sorted by size ?\\ls -l | grep ^- | sort -nr
# List the hidden files in current directory ?\\ls -a1 | grep "^\."
# Display the Disk Usage of file sizes under each directory in currentDirectory ?\\ du -k * | sort –nr \\or\\du -k * |du –k . | sort -nr
# Display the all files recursively with path under current directory ? \\find . -depth -print
#How do you find out drive statistics ? \\iostat -E
# Display disk usage in Kilobytes ?\\du -k
# Display top ten largest files/directories ? \\du -sk * | sort -nr | head