File: hashes_fedora

package info (click to toggle)
ipywidgets 8.1.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,520 kB
  • sloc: python: 7,041; javascript: 1,764; sh: 62; makefile: 36
file content (9 lines) | stat: -rwxr-xr-x 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/bin/sh
for f in $@
do
  echo "$f"
  echo md5: `md5sum "$f" | awk '{print $1}'`
  echo sha1: `sha1sum "$f" | awk '{print $1}'`
  echo sha256: `sha256sum "$f" | awk '{print $1}'`
  echo
done