Skip to main content

File and Folder

Show only modified time of a file:

stat -c %y filename

Human-readable format:

stat -c %y filename | cut -d'.' -f1

File and directory size with sorting:

sudo du -ah <folder-name>/ | sort -h