1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00
Files
cli/components/engine/hack/allmaintainers.sh
Solomon Hykes 370f799bb0 allmaintainers.sh: print a flat list of all maintainers of a directory (including sub-directories)
Upstream-commit: 286ce266b4415ae27d5d9cc177ad12db44845a84
Component: engine
2013-05-28 20:55:07 -07:00

4 lines
135 B
Bash
Executable File

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