Subversion Repositories fileformats

Rev

Blame | Last modification | View Log | RSS feed

  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
  8.