There are several ways to run diffs in Bash
diff # standard diff
vimdiff # side-by-side diff in vim
Using sort
allows us to sort the lines to ensure that the diff takes all of
the content into account
diff <(sort file1) <(sort file2)
There are several ways to run diffs in Bash
diff # standard diff
vimdiff # side-by-side diff in vim
Using sort
allows us to sort the lines to ensure that the diff takes all of
the content into account
diff <(sort file1) <(sort file2)