URI: 
       update_copyright.sh - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       update_copyright.sh (162B)
       ---
            1 #!/bin/sh
            2 
            3 find . -type f -name '*.ebuild' | while read ebuild; do
            4         sed -e "s/^# Copyright .*/# Copyright 1999-$(date +%Y) Gentoo Authors/" \
            5                 -i "$ebuild"
            6 done