TIL: To compare long lines with diff, break each of them in multiple lines https://www.johndcook.com/blog/2021/04/22/moby-diff/
$ diff -u <(fold -s -w 20 temp1.txt) <(fold -s -w 20 temp2.txt)
TIL: To compare long lines with diff, break each of them in multiple lines https://www.johndcook.com/blog/2021/04/22/moby-diff/
$ diff -u <(fold -s -w 20 temp1.txt) <(fold -s -w 20 temp2.txt)