File: md5sum.sh

package info (click to toggle)
apcupsd 3.12.4-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 41,116 kB
  • ctags: 6,199
  • sloc: ansic: 42,488; sh: 8,031; cpp: 3,740; makefile: 1,897; perl: 1,723; tcl: 368; php: 107; sed: 93
file content (8 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
#!/bin/sh
#
# To help track down file changes, I have decided to generate for each
# release a manifest file containing the md5 checksums of all the files
# distributed.
# To verify the checksum, simply call 'md5sum MANIFEST'.
#
find . -type f ! -name MANIFEST -exec md5sum {} \; > MANIFEST