mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
fc0febc5c6
(I'm tired of rewriting this by hand every January)
8 lines
213 B
Perl
Executable File
8 lines
213 B
Perl
Executable File
#!/usr/bin/perl -i -w -p
|
|
|
|
$NEWYEAR=2015;
|
|
|
|
s/Copyright(.*) (201[^5]), The Tor Project/Copyright$1 $2-${NEWYEAR}, The Tor Project/;
|
|
|
|
s/Copyright(.*)-(20..), The Tor Project/Copyright$1-${NEWYEAR}, The Tor Project/;
|