#!/bin/sh

for i in $*
do
	h=`../apps/x509 -hash -noout -in $i`
	/bin/rm -f $h.0
	echo "$i => $h.0"
	ln -s $i $h.0
done
