UnixTools/find_orphans.sh
2013-03-21 01:54:15 +01:00

6 lines
170 B
Bash
Executable File

#!/bin/bash
SEARCH=/usr
join -t '' -v1 <(find $SEARCH | sort) \
<(grep -h $SEARCH /var/lib/dpkg/info/*.list | sort -u) \
| grep -v ".pyc\$"