| 1 | # How to search for code w/o licences |
|---|
| 2 | # linux grep |
|---|
| 3 | grep -rL http://www.perl.com/perl/misc/Artistic.html ./ | grep -v .svn | grep -v blib |
|---|
| 4 | |
|---|
| 5 | # Perl Pod Note: The POD specification requires a "\n" after =end or =cut |
|---|
| 6 | # so terminating a file =cut[EOT] w/o a \n will give mp6.pl's parser a lot |
|---|
| 7 | # of grief |
|---|
| 8 | ######## Perl Pod example |
|---|
| 9 | |
|---|
| 10 | =head1 AUTHORS |
|---|
| 11 | |
|---|
| 12 | The Pugs Team E<lt>perl6-compiler@perl.orgE<gt>. |
|---|
| 13 | |
|---|
| 14 | =head1 SEE ALSO |
|---|
| 15 | |
|---|
| 16 | The Perl 6 homepage at L<http://dev.perl.org/perl6>. |
|---|
| 17 | |
|---|
| 18 | The Pugs homepage at L<http://pugscode.org/>. |
|---|
| 19 | |
|---|
| 20 | =head1 COPYRIGHT |
|---|
| 21 | |
|---|
| 22 | Copyright 2007 by Flavio Soibelmann Glock and others. |
|---|
| 23 | |
|---|
| 24 | This program is free software; you can redistribute it and/or modify it |
|---|
| 25 | under the same terms as Perl itself. |
|---|
| 26 | |
|---|
| 27 | See L<http://www.perl.com/perl/misc/Artistic.html> |
|---|
| 28 | |
|---|
| 29 | =cut |
|---|
| 30 | |
|---|
| 31 | ######## html example |
|---|
| 32 | |
|---|
| 33 | <div class="copyright"> |
|---|
| 34 | <li>AUTHORS</li> |
|---|
| 35 | <p>The Pugs Team E<lt>perl6-compiler@perl.orgE<gt>.</p> |
|---|
| 36 | |
|---|
| 37 | <li>SEE ALSO</li> |
|---|
| 38 | |
|---|
| 39 | <p>The Perl 6 homepage at <a href="http://dev.perl.org/perl6">http://dev.perl.org/perl6</a>.</p> |
|---|
| 40 | |
|---|
| 41 | <p>The Pugs homepage at <a href="http://pugscode.org">http://pugscode.org</a>.</p> |
|---|
| 42 | |
|---|
| 43 | <li>COPYRIGHT</li> |
|---|
| 44 | |
|---|
| 45 | <p>Copyright 2007 by Flavio Soibelmann Glock and others.</p> |
|---|
| 46 | |
|---|
| 47 | <p>This program is free software; you can redistribute it and/or modify it |
|---|
| 48 | under the same terms as Perl itself.</p> |
|---|
| 49 | |
|---|
| 50 | <p>See <a href="http://www.perl.com/perl/misc/Artistic.html">http://www.perl.com/perl/misc/Artistic.html</a></p> |
|---|
| 51 | |
|---|
| 52 | </div> |
|---|
| 53 | |
|---|
| 54 | |
|---|
| 55 | ######## text example |
|---|
| 56 | |
|---|
| 57 | AUTHORS |
|---|
| 58 | |
|---|
| 59 | The Pugs Team perl6-compiler@perl.org. |
|---|
| 60 | |
|---|
| 61 | SEE ALSO |
|---|
| 62 | |
|---|
| 63 | The Perl 6 homepage at http://dev.perl.org/perl6. |
|---|
| 64 | |
|---|
| 65 | The Pugs homepage at http://pugscode.org/. |
|---|
| 66 | |
|---|
| 67 | COPYRIGHT |
|---|
| 68 | |
|---|
| 69 | Copyright 2007 by Flavio Soibelmann Glock and others. |
|---|
| 70 | |
|---|
| 71 | This program is free software; you can redistribute it and/or modify it |
|---|
| 72 | under the same terms as Perl itself. |
|---|
| 73 | |
|---|
| 74 | See http://www.perl.com/perl/misc/Artistic.html |
|---|
| 75 | |
|---|
| 76 | ######## C Code |
|---|
| 77 | |
|---|
| 78 | /* |
|---|
| 79 | |
|---|
| 80 | AUTHORS |
|---|
| 81 | |
|---|
| 82 | The Pugs Team perl6-compiler@perl.org. |
|---|
| 83 | |
|---|
| 84 | SEE ALSO |
|---|
| 85 | |
|---|
| 86 | The Perl 6 homepage at http://dev.perl.org/perl6. |
|---|
| 87 | |
|---|
| 88 | The Pugs homepage at http://pugscode.org/. |
|---|
| 89 | |
|---|
| 90 | COPYRIGHT |
|---|
| 91 | |
|---|
| 92 | Copyright 2007 by Flavio Soibelmann Glock and others. |
|---|
| 93 | |
|---|
| 94 | This program is free software; you can redistribute it and/or modify it |
|---|
| 95 | under the same terms as Perl itself. |
|---|
| 96 | |
|---|
| 97 | See http://www.perl.com/perl/misc/Artistic.html |
|---|
| 98 | |
|---|
| 99 | */ |
|---|
| 100 | |
|---|
| 101 | |
|---|
| 102 | ######## Shell commented |
|---|
| 103 | |
|---|
| 104 | # AUTHORS |
|---|
| 105 | # |
|---|
| 106 | # The Pugs Team perl6-compiler@perl.org. |
|---|
| 107 | # |
|---|
| 108 | # SEE ALSO |
|---|
| 109 | # |
|---|
| 110 | # The Perl 6 homepage at http://dev.perl.org/perl6. |
|---|
| 111 | # |
|---|
| 112 | # The Pugs homepage at http://pugscode.org/. |
|---|
| 113 | # |
|---|
| 114 | # COPYRIGHT |
|---|
| 115 | # |
|---|
| 116 | # Copyright 2007 by Flavio Soibelmann Glock and others. |
|---|
| 117 | # |
|---|
| 118 | # This program is free software; you can redistribute it and/or modify it |
|---|
| 119 | # under the same terms as Perl itself. |
|---|
| 120 | # |
|---|
| 121 | # See http://www.perl.com/perl/misc/Artistic.html |
|---|
| 122 | |
|---|
| 123 | ######## lisp commented |
|---|
| 124 | |
|---|
| 125 | ;; AUTHORS |
|---|
| 126 | ;; |
|---|
| 127 | ;; The Pugs Team perl6-compiler@perl.org. |
|---|
| 128 | ;; |
|---|
| 129 | ;; SEE ALSO |
|---|
| 130 | ;; |
|---|
| 131 | ;; The Perl 6 homepage at http://dev.perl.org/perl6. |
|---|
| 132 | ;; |
|---|
| 133 | ;; The Pugs homepage at http://pugscode.org/. |
|---|
| 134 | ;; |
|---|
| 135 | ;; COPYRIGHT |
|---|
| 136 | ;; |
|---|
| 137 | ;; Copyright 2007 by Flavio Soibelmann Glock and others. |
|---|
| 138 | ;; |
|---|
| 139 | ;; This program is free software; you can redistribute it and/or modify it |
|---|
| 140 | ;; under the same terms as Perl itself. |
|---|
| 141 | ;; |
|---|
| 142 | ;; See http://www.perl.com/perl/misc/Artistic.html |
|---|