Skip to content

stat | Cheatsheet


stat -c '%n %U %G %n %a' $HOME
stat -c %a %n $HOME

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 ' ' '=')"
stat -c %i $HOME
stat -c %h $HOME
stat -c %F $HOME
stat -c %s $HOME
stat -c %x $HOME
stat -c %y $HOME
stat -c %z $HOME
stat -c %o $HOME
stat -c %b $HOME