Blame Scripts/Bash/Functions/Svg/svg.sh

641be4
#!/bin/bash
641be4
#
641be4
# svg.sh -- This function provides very basic SVG manipulations to
a33931
# help you to maintain svg files inside the repository.
641be4
#
72c8a5
# Copyright (C) 2009-2011  Alain Reguera Delgado
641be4
# 
7cd8e9
# This program is free software; you can redistribute it and/or
7cd8e9
# modify it under the terms of the GNU General Public License as
7cd8e9
# published by the Free Software Foundation; either version 2 of the
7cd8e9
# License, or (at your option) any later version.
641be4
# 
641be4
# This program is distributed in the hope that it will be useful, but
641be4
# WITHOUT ANY WARRANTY; without even the implied warranty of
641be4
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
641be4
# General Public License for more details.
641be4
#
641be4
# You should have received a copy of the GNU General Public License
641be4
# along with this program; if not, write to the Free Software
641be4
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
641be4
# USA.
641be4
# 
641be4
# ----------------------------------------------------------------------
641be4
# $Id$
641be4
# ----------------------------------------------------------------------
641be4
    
641be4
function svg {
641be4
a33931
    # Define variables.
641be4
    local FILES=''
641be4
a33931
    # Define command-line interface.
35298f
    svg_getActions
641be4
641be4
}