1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

allmaintainers.sh: print a flat list of all maintainers of a directory (including sub-directories)

This commit is contained in:
Solomon Hykes 2013-05-28 20:55:07 -07:00
parent aa42c6f2a2
commit 286ce266b4

3
hack/allmaintainers.sh Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
find $1 -name MAINTAINERS -exec cat {} ';' | sed -E -e 's/^[^:]*: *(.*)$/\1/' | grep -E -v -e '^ *$' -e '^ *#.*$' | sort -u