#!/bin/csh -f
if ($#argv != 1) then
echo 'Usage: Unlock password'
echo '       decrypts all cm source files in the current directory tree '
exit(-1)
endif

echo "Unlocking CM source files"

set filelist = `find . -name '*.cryptp' -print `

foreach file ( $filelist )
   ./Unlock $1 $file
end
