I'm curious as to what the {} in the following command is actually for?
Example Command:
find /foo/ -name "*.txt" -exec rm -v {} \;
The Man page provided a small blurb but it confused me a little bit:
The string '{}' is replaced by the current file name being processed everywhere it occurs in the arguments to the command, not just in arguments where it is alone, as in some versions of find.
"$a-single-output-file-name"
when-exec
ends with\;
... but it means"$multiple"
"$output"
"$filenames"
when-exec
ends with\+
– Peter.O Feb 01 '12 at 16:35