Remove all Temporary Unison Files

Find and delete all .unison.tmp files.

# Dry run:
find my/ -type f -name *.unison.tmp

# Find and delete:
find my/ -type f -name *.unison.tmp -delete