Blame Scripts/Bash/Functions/About/about_printHistory.sh

12241f
#!/bin/bash
12241f
#
12241f
# about_printHistory.sh -- This function provide the interface to read
12241f
# author information.
12241f
#
12241f
# Copyright (C) 2009, 2010 Alain Reguera Delgado
12241f
# 
12241f
# This program is free software; you can redistribute it and/or
12241f
# modify it under the terms of the GNU General Public License as
12241f
# published by the Free Software Foundation; either version 2 of the
12241f
# License, or (at your option) any later version.
12241f
# 
12241f
# This program is distributed in the hope that it will be useful, but
12241f
# WITHOUT ANY WARRANTY; without even the implied warranty of
12241f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12241f
# General Public License for more details.
12241f
#
12241f
# You should have received a copy of the GNU General Public License
12241f
# along with this program; if not, write to the Free Software
12241f
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
12241f
# USA.
12241f
# 
12241f
# ----------------------------------------------------------------------
12241f
# $Id: about_printHistory.sh 538 2010-11-26 11:12:33Z al $
12241f
# ----------------------------------------------------------------------
12241f
12241f
12241f
function about_printHistory {
12241f
12241f
    local -a FILES
12241f
12241f
    # Define absolute paths to copying information.
12241f
    FILES[0]="/home/centos/artwork/trunk/Scripts/Bash/Functions/About/Config/history.txt"
12241f
12241f
    # Print information.
12241f
    less ${FILES[0]}
12241f
12241f
}
12241f