ronnie
2022-10-23 cb8ede114f8c3e5ead5b294f66344b8a42004745
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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=$topdir/src/tools
 
git ls-files --full-name $topdir        \
| sed 's|^|../../|'                     \
| grep -vFf $toolsdir/no-copyright      \
| xargs $toolsdir/update-copyright-year
 
# EOF