tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

update-copyright (383B)


      1 #!/bin/sh
      2 
      3 # Run the `update-copyright-year' script on all files in the git repository,
      4 # taking care of exceptions stored in file `no-copyright'.
      5 
      6 topdir=`git rev-parse --show-toplevel`
      7 toolsdir=`dirname $0`
      8 
      9 git ls-files --full-name $topdir        \
     10 | sed "s|^|$topdir/|"                   \
     11 | grep -vFf $toolsdir/no-copyright      \
     12 | xargs $toolsdir/update-copyright-year
     13 
     14 # EOF