``` samesame 0.1.0 Match lines from one file in another file.

USAGE: samesame [FLAGS]

FLAGS: -a, --all Only returns exit code 0, if all lines of file1 are found in file2 -e, --exact Only matches if lines in file1 and file2 are exactly the same otherwise searches in the whole line of file2 -h, --help Prints help information -i, --invert If true, print's out the lines of file1, which didn't have a match in file2 -q, --quiet If true, does not print out anything on stdout -r, --report Prints out a report in the end. Doesn't do anything, if --quiet is also set -V, --version Prints version information -v, --verbose Shows line information from file1 and file2 for each match. Doesn't do anything, if --quiet is also set

ARGS: Path to file 1 Path to file 2 ```