dotfiles/.local/bin/biggest_files

4 lines
82 B
Text
Raw Normal View History

2024-12-23 11:35:33 +01:00
#!/bin/bash
echo -e "Size\tPath" && du -ah . 2>/dev/null | sort -rh | head -n 20