novice/shell: Copy/paste from origin/master
[swc-modular-shell.git] / filesystem / users / nelle / north-pacific-gyre / 2012-07-03 / goodiff
1 # difference of two input files
2 # demo version, just return a random number or "files are identical"
3 if [ "$1" == "$2" ]
4 then
5     echo "files are identical"
6 else
7     echo 0.$RANDOM
8 fi