aliases | category | classification | date | date_modified | draft | id | image | links | local_archive_links | pinned | series | tags | title | type | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
cli |
public |
2022-11-06 02:19:01 -0800 |
2022-11-06 02:19:01 -0800 |
false |
20221106101901 |
false |
false |
|
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