bash
This code finds all `.txt` files in the current directory and its subdirectories using the `find` command, then deletes them using the `-exec` option with `rm`. This demonstrates how to use `find` and `-exec` to perform actions on matched files.
find rm