parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | 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