
sdiff
List of commands for sdiff:
-
sdiff:tldr:104c5 sdiff: Compare and then merge, writing the output to a new file.$ sdiff -o ${path-to-merged_file} ${filename1} ${filename2}try on your machineexplain this command
-
sdiff:tldr:13c05 sdiff: Compare 2 files.$ sdiff ${filename1} ${filename2}try on your machineexplain this command
-
sdiff:tldr:3a44a sdiff: Compare 2 files in a case-insensitive manner.$ sdiff -i ${filename1} ${filename2}try on your machineexplain this command
-
sdiff:tldr:d3cb8 sdiff: Compare 2 files, ignoring all tabs and whitespace.$ sdiff -W ${filename1} ${filename2}try on your machineexplain this command
-
sdiff:tldr:ea105 sdiff: Compare 2 files, ignoring whitespace at the end of lines.$ sdiff -Z ${filename1} ${filename2}try on your machineexplain this command