--- tags: [shell] created: Monday, July 07, 2025 --- # List_largest_files_bash ```sh ls -lSh ``` ```sh # Limited to n largest ls -lSh | tail -10 ```