#!/bin/bash
for FILE in " /usr/bin/chattr /usr/bin/lsattr usr/bin/chattr usr/bin/lsattr "
do
	md5sum $FILE > md5sums.txt	
done
echo If this number is larger than the amount of files compared, then something is fishy
echo `awk -F " " '{ print $1 }'<md5sums.txt | sort | uniq | wc -l`

