Subversion Repositories fileformats

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
#!/bin/bash
2
 
3
DIR=$( dirname "$0" )
4
 
5
cat "$DIR"/*.conf | grep -v "^$" | cut -f 1 -d '=' | sort | uniq -c | grep -v " 1 "
6
 
7
exit 0