Skip to content

Instantly share code, notes, and snippets.

@paxperscientiam
Created October 9, 2017 01:32
Show Gist options
  • Save paxperscientiam/d83cd7ebb5baa6e54263ca42bea97513 to your computer and use it in GitHub Desktop.
Save paxperscientiam/d83cd7ebb5baa6e54263ca42bea97513 to your computer and use it in GitHub Desktop.
Find files with filenames containing characters incompatible with OneDrive.
#!/bin/sh
/usr/bin/find . \( -iname "*\:*" \
-o -iname "*\?*" \
-o -iname "*\**" \
-o -iname "*\\\*" \
-o -iname "*\<*" \
-o -iname "*\>*" \
-o -iname "*\|*" \
-o -iname "*\"*" \) -print
@paxperscientiam
Copy link
Author

Tested on MacOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment