mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 03:50:57 +01:00
8 lines
108 B
Plaintext
8 lines
108 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
file=$1
|
||
|
|
if type md5 > /dev/null 2>&1; then
|
||
|
|
md5 -q $*
|
||
|
|
else
|
||
|
|
md5sum $* | awk '{print $1}'
|
||
|
|
fi
|