News
cksfv: Recursively check all .sfv files in current dir
by admin on Apr.02, 2022, under News
The following command line switches allow us to do a recursive scan for .sfv files in the current directory and verify file integrity accordingly:
cksfv -C /foo/bar -r
The switch -C tells the tool to change directory to /foo/bar and run the check in this dir.
The switch -r tells the tool to do a recursive scan.
So to check all files in the current dir we’ll have to run the following:
cksfv -C . -r
This will list all results of the sfv checks.