Plan 9 from Bell Labs’s /usr/web/sources/contrib/yk/fontsrv/libfreetype/src/tools/update-copyright

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/sh

# Run the `update-copyright-year' script on all files in the git repository,
# taking care of exceptions stored in file `no-copyright'.

topdir=`git rev-parse --show-toplevel`
toolsdir=`dirname $0`

git ls-files --full-name $topdir        \
| sed "s|^|$topdir/|"                   \
| grep -vFf $toolsdir/no-copyright      \
| xargs $toolsdir/update-copyright-year

# EOF

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.