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