Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 519 Bytes

remove-all-temporary-unison-files.md

File metadata and controls

30 lines (26 loc) · 519 Bytes
aliases category classification date date_modified draft id image links local_archive_links pinned print series tags title type
remove-all-temporary-unison-files
cli
public
2022-11-06 02:19:01 -0800
2022-11-06 02:19:01 -0800
false
20221106101901
false
false
unison
sync
find
temporary
Remove all Temporary Unison Files
tech-note

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