16ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org#!/bin/sh
26ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org#
36ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org# update.sh
46ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org#
56ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org# update copyright dates in files
65961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# Copyright (c) 2001-2006, Cisco Systems, Inc.
75961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# All rights reserved.
85961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# 
95961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# Redistribution and use in source and binary forms, with or without
105961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# modification, are permitted provided that the following conditions
115961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# are met:
125961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# 
135961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   Redistributions of source code must retain the above copyright
145961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   notice, this list of conditions and the following disclaimer.
155961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# 
165961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   Redistributions in binary form must reproduce the above
175961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   copyright notice, this list of conditions and the following
185961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   disclaimer in the documentation and/or other materials provided
195961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   with the distribution.
205961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# 
215961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   Neither the name of the Cisco Systems, Inc. nor the names of its
225961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   contributors may be used to endorse or promote products derived
235961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com#   from this software without specific prior written permission.
245961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# 
255961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
265961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
275961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
285961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
295961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
305961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
315961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
325961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
335961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
345961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
355961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
365961d8555973f660a94b77ffd7b9495291fbc874mallinath@google.com# OF THE POSSIBILITY OF SUCH DAMAGE.
376ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org
386ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.orga=`find . -name "*.[ch]"`
396ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.orgfor x in $a; do 
406ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org    sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp; 
416ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org    mv $x.tmp $x; 
426ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.orgdone
436ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org
446ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org
456ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org
466ed0ee98e1c3d29a0ef79996f7d1abf174f39besergeyu@chromium.org 
47