dotfiles/.local/bin/biggest_files
2024-12-23 11:35:33 +01:00

3 lines
82 B
Bash
Executable file

#!/bin/bash
echo -e "Size\tPath" && du -ah . 2>/dev/null | sort -rh | head -n 20