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