Replace progress reports with single-character markers
[dupemerge] / dm6
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use Digest::SHA1 qw(sha1 sha1_hex sha1_base64);
5 use Fcntl qw(:DEFAULT :flock);
6 use File::Compare;
7 use File::Path;
8 use File::Temp;
9 use File::stat;
10
11 # Copyright (C) 2010 Zygo Blaxell <dm5@mailtoo.hungrycats.org>
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
27 sub digest {
28         my ($filename) = (@_);
29         die "'$filename' is not a plain file" if (-l $filename) || ! (-f _);
30         my $ctx = Digest::SHA1->new;
31         sysopen(FILE, $filename, O_RDONLY|O_NONBLOCK) or die "open: $filename: $!";
32         binmode(FILE);          # FIXME:  Necessary?  Probably harmless...
33         $ctx->addfile(\*FILE);
34         close(FILE) or die "close: $filename: $!";
35         return $ctx->b64digest;
36 }
37
38 sub usage {
39         die <<USAGE;
40 Usage: $0 link-dir
41 Hashes a NUL-separated list of files on stdin into link-dir.
42
43 Version: 20100513.0
44 USAGE
45 }
46
47 # Link files
48 sub link_files {
49         my ($from, $to) = (@_);
50
51         print STDERR 'T';
52         my $inode_dir = $to;
53         my $inode_base = $to;
54         $inode_dir =~ s:[^/]*$::o;
55         $inode_base =~ s:^.*/::os;
56         my $tmp_to = File::Temp::tempnam($inode_dir, ".$inode_base.");
57         print STDERR "\bL";
58         link($from, $tmp_to) or die "link: $from -> $tmp_to: $!";
59         print STDERR "\bR";
60         unless (rename($tmp_to, $to)) {
61                 my $saved_bang = $!;
62                 print STDERR "\bU";
63                 unlink($tmp_to) or warn "unlink: $tmp_to: $!";  # Try, possibly in vain, to clean up
64                 die "rename: $tmp_to -> $from: $saved_bang";
65         }
66         print STDERR "\b \b";
67 }
68
69 my $link_dir = shift @ARGV;
70 (-d $link_dir) or usage;
71
72 sub slash_prefix {
73         my ($file) = @_;
74         my $prefix = substr($file, 0, 3);
75         my $suffix = substr($file, 3);
76         $prefix =~ s:(.):$1/:osg;
77         chop($prefix);
78         return ($prefix, $suffix);
79 }
80
81 sub prepare_parents {
82         my ($link_dir, $file) = @_;
83         my ($prefix, $suffix) = slash_prefix($file);
84         my $parent = "$link_dir/$prefix";
85         print STDERR 'm';
86         mkpath($parent, { verbose => 0 });
87         print STDERR "\b";
88         die "mkpath: $parent: $!" unless -d $parent;
89         return "$parent/$suffix";
90 }
91
92 # ext3 cannot handle more than 32000 links to a file.  Leave some headroom.
93 my $link_count_max = 31990;
94
95 $/ = "\0";
96 while (<STDIN>) {
97         my $file = $_;
98         eval {
99                 for (1) {
100                         chomp $file;
101
102                         # Get file stat data
103                         print STDERR '.';
104                         my $st = lstat($file);
105                         die "lstat: $file: $!" unless $st;
106
107                         # Oops?
108                         next unless -f _;
109
110                         # Skip the file if it has far too many links already
111                         next if ($st->nlink > $link_count_max);
112
113                         # Check link to inode
114                         my $inode_link = prepare_parents("$link_dir/inode", $st->ino);
115                         print STDERR 'I';
116                         my $inode_st = lstat($inode_link);
117                         my $update_links;
118                         if ($inode_st) {
119                                 my $inode_dev = $inode_st->dev;
120                                 my $inode_ino = $inode_st->ino;
121                                 my $file_dev = $st->dev;
122                                 my $file_ino = $st->ino;
123                                 if ($inode_ino != $file_ino || $inode_dev != $file_dev) {
124                                         warn "inode link '$inode_link' is wrong (inode $inode_ino should be $file_ino)" if $inode_ino != $file_ino;
125                                         warn "inode link '$inode_link' is wrong (dev $inode_dev should be $file_dev)" if $inode_dev != $file_dev;
126                                         $update_links = 1;
127                                 }
128                         } else {
129                                 $update_links = 1;
130                         }
131                         print STDERR "\b";
132
133                         # If neither criteria for updating link is met, leave it as-is
134                         next unless $update_links;
135
136                         # Compute digest
137                         print STDERR 'd';
138                         my $digest = digest($file);
139                         print STDERR "\b";
140
141                         # Base64 uses /, we prefer _
142                         $digest =~ y:/:_:;
143
144                         # Check link to digest
145                         my $digest_link = prepare_parents("$link_dir/digest", $digest);
146                         print STDERR 'D';
147                         my $digest_st = lstat($digest_link);
148                         if ($digest_st) {
149                                 my $digest_nlink = $digest_st->nlink;
150                                 if ($digest_nlink > 31990) {
151                                         print STDERR 'u';
152                                         unlink($digest_link) or die "unlink: $digest_link: $!";
153                                         undef $digest_st;
154                                 }
155                         }
156
157                         # If digest link exists, link it to file
158                         if ($digest_st) {
159                                 print STDERR 'c';
160                                 die "NOT identical!" if compare($digest_link, $file);
161
162                                 # Old, replace input with old file
163                                 print STDERR '-';
164                                 link_files($digest_link, $file);
165                         } else {
166                                 # New, add input to digest
167                                 print STDERR '+';
168                                 link_files($file, $digest_link);
169                         }
170
171                         # A link to the inode indicates we are done, so do it last
172                         link_files($file, $inode_link);
173
174                 }
175         };
176         warn "$file: $@" if $@;
177 }
178
179 exit(0);
180
181 __END__
182
183 #################################################################################
184 #                     GNU GENERAL PUBLIC LICENSE                                #
185 #                        Version 2, June 1991                                   #
186 #                                                                               #
187 #  Copyright (C) 1989, 1991 Free Software Foundation, Inc.                      #
188 #      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                  #
189 #  Everyone is permitted to copy and distribute verbatim copies                 #
190 #  of this license document, but changing it is not allowed.                    #
191 #                                                                               #
192 #                             Preamble                                          #
193 #                                                                               #
194 #   The licenses for most software are designed to take away your               #
195 # freedom to share and change it.  By contrast, the GNU General Public          #
196 # License is intended to guarantee your freedom to share and change free        #
197 # software--to make sure the software is free for all its users.  This          #
198 # General Public License applies to most of the Free Software                   #
199 # Foundation's software and to any other program whose authors commit to        #
200 # using it.  (Some other Free Software Foundation software is covered by        #
201 # the GNU Library General Public License instead.)  You can apply it to         #
202 # your programs, too.                                                           #
203 #                                                                               #
204 #   When we speak of free software, we are referring to freedom, not            #
205 # price.  Our General Public Licenses are designed to make sure that you        #
206 # have the freedom to distribute copies of free software (and charge for        #
207 # this service if you wish), that you receive source code or can get it         #
208 # if you want it, that you can change the software or use pieces of it          #
209 # in new free programs; and that you know you can do these things.              #
210 #                                                                               #
211 #   To protect your rights, we need to make restrictions that forbid            #
212 # anyone to deny you these rights or to ask you to surrender the rights.        #
213 # These restrictions translate to certain responsibilities for you if you       #
214 # distribute copies of the software, or if you modify it.                       #
215 #                                                                               #
216 #   For example, if you distribute copies of such a program, whether            #
217 # gratis or for a fee, you must give the recipients all the rights that         #
218 # you have.  You must make sure that they, too, receive or can get the          #
219 # source code.  And you must show them these terms so they know their           #
220 # rights.                                                                       #
221 #                                                                               #
222 #   We protect your rights with two steps: (1) copyright the software, and      #
223 # (2) offer you this license which gives you legal permission to copy,          #
224 # distribute and/or modify the software.                                        #
225 #                                                                               #
226 #   Also, for each author's protection and ours, we want to make certain        #
227 # that everyone understands that there is no warranty for this free             #
228 # software.  If the software is modified by someone else and passed on, we      #
229 # want its recipients to know that what they have is not the original, so       #
230 # that any problems introduced by others will not reflect on the original       #
231 # authors' reputations.                                                         #
232 #                                                                               #
233 #   Finally, any free program is threatened constantly by software              #
234 # patents.  We wish to avoid the danger that redistributors of a free           #
235 # program will individually obtain patent licenses, in effect making the        #
236 # program proprietary.  To prevent this, we have made it clear that any         #
237 # patent must be licensed for everyone's free use or not licensed at all.       #
238 #                                                                               #
239 #   The precise terms and conditions for copying, distribution and              #
240 # modification follow.                                                          #
241 #                                                                               #
242 #                     GNU GENERAL PUBLIC LICENSE                                #
243 #    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION            #
244 #                                                                               #
245 #   0. This License applies to any program or other work which contains         #
246 # a notice placed by the copyright holder saying it may be distributed          #
247 # under the terms of this General Public License.  The "Program", below,        #
248 # refers to any such program or work, and a "work based on the Program"         #
249 # means either the Program or any derivative work under copyright law:          #
250 # that is to say, a work containing the Program or a portion of it,             #
251 # either verbatim or with modifications and/or translated into another          #
252 # language.  (Hereinafter, translation is included without limitation in        #
253 # the term "modification".)  Each licensee is addressed as "you".               #
254 #                                                                               #
255 # Activities other than copying, distribution and modification are not          #
256 # covered by this License; they are outside its scope.  The act of              #
257 # running the Program is not restricted, and the output from the Program        #
258 # is covered only if its contents constitute a work based on the                #
259 # Program (independent of having been made by running the Program).             #
260 # Whether that is true depends on what the Program does.                        #
261 #                                                                               #
262 #   1. You may copy and distribute verbatim copies of the Program's             #
263 # source code as you receive it, in any medium, provided that you               #
264 # conspicuously and appropriately publish on each copy an appropriate           #
265 # copyright notice and disclaimer of warranty; keep intact all the              #
266 # notices that refer to this License and to the absence of any warranty;        #
267 # and give any other recipients of the Program a copy of this License           #
268 # along with the Program.                                                       #
269 #                                                                               #
270 # You may charge a fee for the physical act of transferring a copy, and         #
271 # you may at your option offer warranty protection in exchange for a fee.       #
272 #                                                                               #
273 #   2. You may modify your copy or copies of the Program or any portion         #
274 # of it, thus forming a work based on the Program, and copy and                 #
275 # distribute such modifications or work under the terms of Section 1            #
276 # above, provided that you also meet all of these conditions:                   #
277 #                                                                               #
278 #     a) You must cause the modified files to carry prominent notices           #
279 #     stating that you changed the files and the date of any change.            #
280 #                                                                               #
281 #     b) You must cause any work that you distribute or publish, that in        #
282 #     whole or in part contains or is derived from the Program or any           #
283 #     part thereof, to be licensed as a whole at no charge to all third         #
284 #     parties under the terms of this License.                                  #
285 #                                                                               #
286 #     c) If the modified program normally reads commands interactively          #
287 #     when run, you must cause it, when started running for such                #
288 #     interactive use in the most ordinary way, to print or display an          #
289 #     announcement including an appropriate copyright notice and a              #
290 #     notice that there is no warranty (or else, saying that you provide        #
291 #     a warranty) and that users may redistribute the program under             #
292 #     these conditions, and telling the user how to view a copy of this         #
293 #     License.  (Exception: if the Program itself is interactive but            #
294 #     does not normally print such an announcement, your work based on          #
295 #     the Program is not required to print an announcement.)                    #
296 #                                                                               #
297 # These requirements apply to the modified work as a whole.  If                 #
298 # identifiable sections of that work are not derived from the Program,          #
299 # and can be reasonably considered independent and separate works in            #
300 # themselves, then this License, and its terms, do not apply to those           #
301 # sections when you distribute them as separate works.  But when you            #
302 # distribute the same sections as part of a whole which is a work based         #
303 # on the Program, the distribution of the whole must be on the terms of         #
304 # this License, whose permissions for other licensees extend to the             #
305 # entire whole, and thus to each and every part regardless of who wrote it.     #
306 #                                                                               #
307 # Thus, it is not the intent of this section to claim rights or contest         #
308 # your rights to work written entirely by you; rather, the intent is to         #
309 # exercise the right to control the distribution of derivative or               #
310 # collective works based on the Program.                                        #
311 #                                                                               #
312 # In addition, mere aggregation of another work not based on the Program        #
313 # with the Program (or with a work based on the Program) on a volume of         #
314 # a storage or distribution medium does not bring the other work under          #
315 # the scope of this License.                                                    #
316 #                                                                               #
317 #   3. You may copy and distribute the Program (or a work based on it,          #
318 # under Section 2) in object code or executable form under the terms of         #
319 # Sections 1 and 2 above provided that you also do one of the following:        #
320 #                                                                               #
321 #     a) Accompany it with the complete corresponding machine-readable          #
322 #     source code, which must be distributed under the terms of Sections        #
323 #     1 and 2 above on a medium customarily used for software interchange; or,  #
324 #                                                                               #
325 #     b) Accompany it with a written offer, valid for at least three            #
326 #     years, to give any third party, for a charge no more than your            #
327 #     cost of physically performing source distribution, a complete             #
328 #     machine-readable copy of the corresponding source code, to be             #
329 #     distributed under the terms of Sections 1 and 2 above on a medium         #
330 #     customarily used for software interchange; or,                            #
331 #                                                                               #
332 #     c) Accompany it with the information you received as to the offer         #
333 #     to distribute corresponding source code.  (This alternative is            #
334 #     allowed only for noncommercial distribution and only if you               #
335 #     received the program in object code or executable form with such          #
336 #     an offer, in accord with Subsection b above.)                             #
337 #                                                                               #
338 # The source code for a work means the preferred form of the work for           #
339 # making modifications to it.  For an executable work, complete source          #
340 # code means all the source code for all modules it contains, plus any          #
341 # associated interface definition files, plus the scripts used to               #
342 # control compilation and installation of the executable.  However, as a        #
343 # special exception, the source code distributed need not include               #
344 # anything that is normally distributed (in either source or binary             #
345 # form) with the major components (compiler, kernel, and so on) of the          #
346 # operating system on which the executable runs, unless that component          #
347 # itself accompanies the executable.                                            #
348 #                                                                               #
349 # If distribution of executable or object code is made by offering              #
350 # access to copy from a designated place, then offering equivalent              #
351 # access to copy the source code from the same place counts as                  #
352 # distribution of the source code, even though third parties are not            #
353 # compelled to copy the source along with the object code.                      #
354 #                                                                               #
355 #   4. You may not copy, modify, sublicense, or distribute the Program          #
356 # except as expressly provided under this License.  Any attempt                 #
357 # otherwise to copy, modify, sublicense or distribute the Program is            #
358 # void, and will automatically terminate your rights under this License.        #
359 # However, parties who have received copies, or rights, from you under          #
360 # this License will not have their licenses terminated so long as such          #
361 # parties remain in full compliance.                                            #
362 #                                                                               #
363 #   5. You are not required to accept this License, since you have not          #
364 # signed it.  However, nothing else grants you permission to modify or          #
365 # distribute the Program or its derivative works.  These actions are            #
366 # prohibited by law if you do not accept this License.  Therefore, by           #
367 # modifying or distributing the Program (or any work based on the               #
368 # Program), you indicate your acceptance of this License to do so, and          #
369 # all its terms and conditions for copying, distributing or modifying           #
370 # the Program or works based on it.                                             #
371 #                                                                               #
372 #   6. Each time you redistribute the Program (or any work based on the         #
373 # Program), the recipient automatically receives a license from the             #
374 # original licensor to copy, distribute or modify the Program subject to        #
375 # these terms and conditions.  You may not impose any further                   #
376 # restrictions on the recipients' exercise of the rights granted herein.        #
377 # You are not responsible for enforcing compliance by third parties to          #
378 # this License.                                                                 #
379 #                                                                               #
380 #   7. If, as a consequence of a court judgment or allegation of patent         #
381 # infringement or for any other reason (not limited to patent issues),          #
382 # conditions are imposed on you (whether by court order, agreement or           #
383 # otherwise) that contradict the conditions of this License, they do not        #
384 # excuse you from the conditions of this License.  If you cannot                #
385 # distribute so as to satisfy simultaneously your obligations under this        #
386 # License and any other pertinent obligations, then as a consequence you        #
387 # may not distribute the Program at all.  For example, if a patent              #
388 # license would not permit royalty-free redistribution of the Program by        #
389 # all those who receive copies directly or indirectly through you, then         #
390 # the only way you could satisfy both it and this License would be to           #
391 # refrain entirely from distribution of the Program.                            #
392 #                                                                               #
393 # If any portion of this section is held invalid or unenforceable under         #
394 # any particular circumstance, the balance of the section is intended to        #
395 # apply and the section as a whole is intended to apply in other                #
396 # circumstances.                                                                #
397 #                                                                               #
398 # It is not the purpose of this section to induce you to infringe any           #
399 # patents or other property right claims or to contest validity of any          #
400 # such claims; this section has the sole purpose of protecting the              #
401 # integrity of the free software distribution system, which is                  #
402 # implemented by public license practices.  Many people have made               #
403 # generous contributions to the wide range of software distributed              #
404 # through that system in reliance on consistent application of that             #
405 # system; it is up to the author/donor to decide if he or she is willing        #
406 # to distribute software through any other system and a licensee cannot         #
407 # impose that choice.                                                           #
408 #                                                                               #
409 # This section is intended to make thoroughly clear what is believed to         #
410 # be a consequence of the rest of this License.                                 #
411 #                                                                               #
412 #   8. If the distribution and/or use of the Program is restricted in           #
413 # certain countries either by patents or by copyrighted interfaces, the         #
414 # original copyright holder who places the Program under this License           #
415 # may add an explicit geographical distribution limitation excluding            #
416 # those countries, so that distribution is permitted only in or among           #
417 # countries not thus excluded.  In such case, this License incorporates         #
418 # the limitation as if written in the body of this License.                     #
419 #                                                                               #
420 #   9. The Free Software Foundation may publish revised and/or new versions     #
421 # of the General Public License from time to time.  Such new versions will      #
422 # be similar in spirit to the present version, but may differ in detail to      #
423 # address new problems or concerns.                                             #
424 #                                                                               #
425 # Each version is given a distinguishing version number.  If the Program        #
426 # specifies a version number of this License which applies to it and "any       #
427 # later version", you have the option of following the terms and conditions     #
428 # either of that version or of any later version published by the Free          #
429 # Software Foundation.  If the Program does not specify a version number of     #
430 # this License, you may choose any version ever published by the Free Software  #
431 # Foundation.                                                                   #
432 #                                                                               #
433 #   10. If you wish to incorporate parts of the Program into other free         #
434 # programs whose distribution conditions are different, write to the author     #
435 # to ask for permission.  For software which is copyrighted by the Free         #
436 # Software Foundation, write to the Free Software Foundation; we sometimes      #
437 # make exceptions for this.  Our decision will be guided by the two goals       #
438 # of preserving the free status of all derivatives of our free software and     #
439 # of promoting the sharing and reuse of software generally.                     #
440 #                                                                               #
441 #                             NO WARRANTY                                       #
442 #                                                                               #
443 #   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY    #
444 # FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN      #
445 # OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES        #
446 # PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED    #
447 # OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF          #
448 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS     #
449 # TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE        #
450 # PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,      #
451 # REPAIR OR CORRECTION.                                                         #
452 #                                                                               #
453 #   12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING   #
454 # WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR           #
455 # REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,    #
456 # INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING   #
457 # OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED     #
458 # TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY      #
459 # YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER    #
460 # PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE         #
461 # POSSIBILITY OF SUCH DAMAGES.                                                  #
462 #                                                                               #
463 #                      END OF TERMS AND CONDITIONS                              #
464 #                                                                               #
465 #             How to Apply These Terms to Your New Programs                     #
466 #                                                                               #
467 #   If you develop a new program, and you want it to be of the greatest         #
468 # possible use to the public, the best way to achieve this is to make it        #
469 # free software which everyone can redistribute and change under these terms.   #
470 #                                                                               #
471 #   To do so, attach the following notices to the program.  It is safest        #
472 # to attach them to the start of each source file to most effectively           #
473 # convey the exclusion of warranty; and each file should have at least          #
474 # the "copyright" line and a pointer to where the full notice is found.         #
475 #                                                                               #
476 #     <one line to give the program's name and a brief idea of what it does.>   #
477 #     Copyright (C) <year>  <name of author>                                    #
478 #                                                                               #
479 #     This program is free software; you can redistribute it and/or modify      #
480 #     it under the terms of the GNU General Public License as published by      #
481 #     the Free Software Foundation; either version 2 of the License, or         #
482 #     (at your option) any later version.                                       #
483 #                                                                               #
484 #     This program is distributed in the hope that it will be useful,           #
485 #     but WITHOUT ANY WARRANTY; without even the implied warranty of            #
486 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             #
487 #     GNU General Public License for more details.                              #
488 #                                                                               #
489 #     You should have received a copy of the GNU General Public License         #
490 #     along with this program; if not, write to the Free Software               #
491 #     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA #
492 #                                                                               #
493 #                                                                               #
494 # Also add information on how to contact you by electronic and paper mail.      #
495 #                                                                               #
496 # If the program is interactive, make it output a short notice like this        #
497 # when it starts in an interactive mode:                                        #
498 #                                                                               #
499 #     Gnomovision version 69, Copyright (C) year  name of author                #
500 #     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. #
501 #     This is free software, and you are welcome to redistribute it             #
502 #     under certain conditions; type `show c' for details.                      #
503 #                                                                               #
504 # The hypothetical commands `show w' and `show c' should show the appropriate   #
505 # parts of the General Public License.  Of course, the commands you use may     #
506 # be called something other than `show w' and `show c'; they could even be      #
507 # mouse-clicks or menu items--whatever suits your program.                      #
508 #                                                                               #
509 # You should also get your employer (if you work as a programmer) or your       #
510 # school, if any, to sign a "copyright disclaimer" for the program, if          #
511 # necessary.  Here is a sample; alter the names:                                #
512 #                                                                               #
513 #   Yoyodyne, Inc., hereby disclaims all copyright interest in the program      #
514 #   `Gnomovision' (which makes passes at compilers) written by James Hacker.    #
515 #                                                                               #
516 #   <signature of Ty Coon>, 1 April 1989                                        #
517 #   Ty Coon, President of Vice                                                  #
518 #                                                                               #
519 # This General Public License does not permit incorporating your program into   #
520 # proprietary programs.  If your program is a subroutine library, you may       #
521 # consider it more useful to permit linking proprietary applications with the   #
522 # library.  If this is what you want to do, use the GNU Library General         #
523 # Public License instead of this License.                                       #
524 #################################################################################