We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just found a tool that can tell whether two files share the same physical blocks: https://github.com/dyorgio/apfs-clone-checker
$ gcc clone_checker.c -o clone_checker $ chmod +x clone_checker $ ls LICENSE README.md clone_checker clone_checker.c # normal copy $ cp README.md README.copy.md # use copyfile $ cp -c README.md README.clone.md $ ./clone_checker README.md README.copy.md 0 $ ./clone_checker README.md README.clone.md 1 # make some changes $ vi README.clone.md $ ./clone_checker README.md README.clone.md 0
It could be used to test the clone function.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I just found a tool that can tell whether two files share the same physical blocks: https://github.com/dyorgio/apfs-clone-checker
It could be used to test the clone function.
The text was updated successfully, but these errors were encountered: