Wednesday, August 28, 2024

The Duplicate File Program

Most of the duplicate files on OneDrive are of the form * - Copy.*.  I can fix this from bash using find.

find . -name "* - Copy*" -exec rm {} \;

The directories thst are copies will require rm -r

No comments:

Post a Comment