Blame Scripts/Functions/Tuneup/tuneup_doShell.sh

c0ee12
#!/bin/bash
c0ee12
#
be7de3
# tuneup_doShell.sh -- This function performs maintainance tasks for
be7de3
# Shell script files.
c0ee12
#
9f5f2e
# Copyright (C) 2009-2011 Alain Reguera Delgado
fa95b1
#
fa95b1
# This program is free software; you can redistribute it and/or modify
fa95b1
# it under the terms of the GNU General Public License as published by
fa95b1
# the Free Software Foundation; either version 2 of the License, or
fa95b1
# (at your option) any later version.
fa95b1
#
c0ee12
# This program is distributed in the hope that it will be useful, but
c0ee12
# WITHOUT ANY WARRANTY; without even the implied warranty of
c0ee12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
c0ee12
# General Public License for more details.
c0ee12
#
c0ee12
# You should have received a copy of the GNU General Public License
c0ee12
# along with this program; if not, write to the Free Software
c0ee12
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
c0ee12
# USA.
c0ee12
# ----------------------------------------------------------------------
c0ee12
# $Id$
c0ee12
# ----------------------------------------------------------------------
c0ee12
be7de3
function tuneup_doShell {
be7de3
be7de3
    # Rebuild top comment inside shell scripts, mainly to update
be7de3
    # copyright information.
be7de3
    tuneup_doShellTopComment
c0ee12
c0ee12
}