Compare two file and find diff between two file in sort form.
It will list both file content and diff.
sdiff -s File1 File2
It will do Sort and showing complete diff.
grep -vf File2 File1
It will list both file content and diff.
sdiff -s File1 File2
It will do Sort and showing complete diff.
grep -vf File2 File1