"Fossies" - the Fresh Open Source Software Archive 
Member "ark-20050419/arksf1/ark-release/needs-copyright" (26 May 2004, 2179 Bytes) of package /linux/privat/old/ark-arksf1-20050419.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #! /bin/sh
2 ################################################################
3 #
4 # Copyright (c) 2001,2004, Will Partain
5 # All rights reserved.
6 #
7 # Redistribution and use in source and binary forms, with or
8 # without modification, are permitted provided that the
9 # following conditions are met:
10 #
11 # * Redistributions of source code must retain the above
12 # copyright notice, this list of conditions and the
13 # following disclaimer.
14 #
15 # * Redistributions in binary form must reproduce the above
16 # copyright notice, this list of conditions and the
17 # following disclaimer in the documentation and/or other
18 # materials provided with the distribution.
19 #
20 # * Neither the name of the Arusha Project nor the names of
21 # its contributors may be used to endorse or promote
22 # products derived from this software without specific prior
23 # written permission.
24 #
25 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
26 # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
27 # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28 # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
33 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
36 # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #
39 ################################################################
40 #
41 # Take a shot at finding files in '.' that *lack* a copyright
42 # notice (egrep -L), and which might need one.
43 #
44 find . -type f -print0 | xargs -0 egrep -L -i copyright | sort \
45 | egrep -v '/CVS/' \
46 | egrep -v '/\.#' \
47 | egrep -v '/ark/tests/' \
48 | egrep -v 'ChangeLog' \
49 | egrep -v 'README' \
50 | egrep -v 'TAGS' \
51 | egrep -v '\.cvsignore$' \
52 | egrep -v '\.py[co]$' \
53 | egrep -v '\.xmla$' \
54 | egrep -v '~$' \
55 | egrep -v -- '-(SAVE|LATER|OLD)$'