#!/bin/bash

# rmd5sum.bash, by Mark McClelland <mmcclell@bigfoot.com>
# http://alpha.dyndns.org
# Calculates MD5 checksums on files in the current directory, recursively.

OLDIFS=$IFS
IFS=$'\n'
md5sum -b `find -type f -printf "%p\n"`
IFS=$OLDIFS

