A directory comparison tool (POSIX systems)
Go to file
alessandro ferro 3080990f83 Update dircomp.h 2023-04-27 17:24:57 +02:00
.gitignore Get directories' name from argv 2023-04-13 23:48:16 +02:00
LICENSE Initial commit 2023-04-13 07:46:10 +00:00
README.md Update README.md 2023-04-18 10:02:16 +02:00
build.sh Reimplemented hash function 2023-04-17 15:51:04 +02:00
dircomp.c Added hash function computation compatible with openssl 3.0 2023-04-27 17:20:54 +02:00
dircomp.h Update dircomp.h 2023-04-27 17:24:57 +02:00

README.md

dircomp

Name

dircomp - A directory comparison tool

Synopsis

dircomp directory1 directory2 [-rvfbh]

Description

dircomp is a program for evaluating whether two directories are equivalent.

Two directories are considered to be equivalent if and only if these conditions apply:

  • They have the same number of files and folders;
  • For each file in a directory, there is the same file in the other. Two files are considered to be the same if they have the same name, including extension, and same content;
  • For each folder in a directory, there is a folder with the same name in the other.

If the recursive option is applied, then another condition must hold true:

  • For each folder in a directory, there is an equivalent folder in the other, with the same name.

The options are as follows:

  -r             Recursive
  -v             Verbose
  -f             Fast. Halt as soon as the directories are found to be not equal             
  -b             Byte-by-byte file comparison (default compares their hashes)
  -h             Print this help and quit