AUTHORS 600 B

1234567891011121314151617181920212223242526
  1. All contributors are required to sign a "Contributor License Agreement" at
  2. <TBD>
  3. The following organizations and people have contributed code to this library.
  4. (Please keep both lists sorted alphabetically.)
  5. Arista Networks, Inc.
  6. Benoit Sigoure
  7. Fabrice Rabaute
  8. The list of individual contributors for code currently in HEAD can be obtained
  9. at any time with the following script:
  10. find . -type f \
  11. | while read i; do \
  12. git blame -t $i 2>/dev/null; \
  13. done \
  14. | sed 's/^[0-9a-f]\{8\} [^(]*(\([^)]*\) [-+0-9 ]\{14,\}).*/\1/;s/ *$//' \
  15. | awk '{a[$0]++; t++} END{for(n in a) print n}' \
  16. | sort