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
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