#!/bin/bash
shift
ALGO=$1
case $ALGO in
1)
sha1sum $@
;;
256)
sha256sum $@
*)
>&2 echo "Algorithm $ALGO not found"
exit 1
esac