#!/bin/sh
set -e

cat /var/lib/ucf/registry | awk '{print $2}' | while read f
do
    test -f "$f" && echo "$f"
done

