Skip to content

Files

Latest commit

875edde · Apr 16, 2022

History

History
This branch is 63 commits behind artpol84/poc:master.

linux

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 24, 2018
Apr 16, 2022
Apr 27, 2020
Jun 14, 2021

Useful tips

Query all directories from the particular mount point:

$ for i in `ls -1 <path>`; do 
  mp=`findmnt -n -o SOURCE --target $i`;
  if [ "$mp" = <mount-point> ]; then 
    echo "Process $i";
    sudo du -hs $i;
  fi
done