You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
shift |
|
ALGO=$1 |
|
shift |
|
case $ALGO in |
|
1) |
|
sha1sum $@ |
|
;; |
|
256) |
|
sha256sum $@ |
|
;; |
|
*) |
|
>&2 echo "Algorithm $ALGO not found" |
|
exit 1 |
|
;; |
|
esac
|
|
|