#!/bin/sh

for i in /etc/ssl/certs/*.pem
do
  cp $i ~/.certs/`openssl x509 -hash -noout -in $i`.o
done

