detail
[platal.git] / bin / devel / modules_status
CommitLineData
0337d704 1#!/bin/zsh
2
3chdir ${1:-.}
4
5dirs=(bin configs htdocs hooks include plugins scripts templates)
6opts=(-type f -not -path '*CVS*' -not -name '.cvsignore' -not -path '*.arch*' -not -path '*TESTS*')
7
8diff -u <(cat install.d/**/files|sort) <(find $dirs $opts|sort) \
9 | grep '^[-+][a-z]' | sed -e 's,^+,Orphaned: ,;s,^-,Missing : ,'