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