#!/bin/sh

for f in `ls *.xz *.rpm *.deb *.exe`
do
  checksum_file="$f.sha256sum"
  if [ -f "$checksum_file" ]; then
    continue
  fi
  echo "Creating checksum for $f"
  sha256sum $f >$checksum_file
done
