Ted Fulmer ISS spotter

Archive Page Two Archive KTCK Stream Screen grab from spotthestation.org

  ### DECISIONS and ACTIONs

if [ $exactMatch -eq 0 ] && [ $md5sumPresent -eq 0 ]; then  # simplest condition - make the entry
  echo "$MD5HASH $prettySize $prettyFILEB $1" > "$SMTPT"/archive-md5sums.txt
  exit
elif [ $exactMatch -eq 0 ] && [ $md5sumPresent -ne 0 ]; then  # potential duplicate hash with mismatched file/path
true
elif [ $exactMatch -ne 0 ] && [ $md5sumPresent -ne 0 ]; then  # no work to do???
exit
fi # exact match eq 0
### DECISIONS and ACTIONs