stat | Cheatsheet
Print folder, user, group and octal permissions of all files in ~/
stat -c '%n %U %G %n %a' $HOME
Print permissions in octal
Simulate Dolphin explorers default setup
stat -c '%n %s %U %G %a %z' $HOME/* \
|awk '//{printf "%10s %100s %10s %10s %10s %10s\n",$1,$2,$3,$4,$5,$6 }' \
|column -t -N Path,Size,User,Group,Perm,Modified \
|sed "1,2 i $(printf %85s\
|tr ' ' '=')"
Print the inode number
Print the number of hard links
Print the file type
Print the file's total size in bytes
Print the time of last access
Print the time of last modification
Print the time of last change
Print the I/O block size
Print the number of blocks allocated