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:
parent
aa42c6f2a2
commit
286ce266b4
1 changed files with 3 additions and 0 deletions
3
hack/allmaintainers.sh
Executable file
3
hack/allmaintainers.sh
Executable 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
|
Loading…
Reference in a new issue