blob: 138522e3bbb04e92047bcc72b9e57be14983a4b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
diff_output=$(diff "$1" "$2")
if [ -z "$diff_output" ];then
echo "The two files are totally the same!"
else
echo "There's something different: "
echo "$diff_output"
fi
exit 0
|