powered by
Returns the line numbers where two (text)files differ
compareFiles( file1, file2, nr = 20, startline = 1, endline = length(f1), quiet = FALSE, ... )
Vector of line numbers that differ, result from head(..., nr)
head(..., nr)
Filenames to be read by readLines.
readLines
number of results printed. DEFAULT: 20
start and end lines, e.g. to exclude section that is already compared.
show warnings about file lengths? DEFAULT: FALSE
further arguments passed to readLines
Berry Boessenkool, berry-b@gmx.de, Aug 2014
https://text-compare.com/ which I sadly only discovered after writing this function, dupes for finding duplicate lines, combineFiles
dupes
combineFiles
filenames <- system.file(paste0("extdata/versuch",1:2,".txt"), package="berryFunctions") compareFiles(filenames[1], filenames[2], warn=FALSE)
Run the code above in your browser using DataLab