#!/bin/bash

LANG=C dpkg-divert --list | cut -d' ' -f5 | while read diversion
do
	test -e $diversion && echo $diversion
done

