Q1. When should you use find -exec versus xargs, and how do you handle odd filenames?
Both run a command for many files, but they differ in safety and performance. ```bash find . -name '*.tmp' -exec rm -- {} + # batches, handles spaces find . -name '*.tmp'...