Find the 10 largest files on disk
find . -type f -exec du -h {} + | sort -rh | head -10
Give execute permission to a file
Count total lines across all files in a directory
Show disk usage with readable sizes
Search for a string in all files recursively