Created
May 24, 2019 18:53
-
-
Save aberezin/25e8b8cc2feacff665ca614e8df0487c to your computer and use it in GitHub Desktop.
One-liner to force dropbox to synch every file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f -exec sh -c 'cat "$1" > /dev/null; printf "$1"' -- '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe should just read first byte or block instead.