5 lines
74 B
Bash
5 lines
74 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SUM=`wget -q $1 -O - | sha512sum`
|
||
|
echo "$SUM" | cut -d " " -f1
|