Integrity is a simple but robust file integrity checker.
Tweet this project Short link
No changes have been submitted for this release.
Checksum in a loop This tool can be done with md5sum and bash in 5 lines or less, it basically does following:
run=command_to_run
while ! read -t60; do md5sum --check hashes || $run; done
kravietz 31 Oct 2003 04:06
A performance analysis and monitoring tool for Solaris and Linux systems.
Berkeley Internet Name Domain
- All comments
Recent commentsChecksum in a loop
This tool can be done with md5sum and bash in 5 lines or less, it basically does following:
run=command_to_run
while ! read -t60; do md5sum --check hashes || $run; done