Blame tcar-scripts-tuneup/Modules/Svg/svg_setVacuumDefs.sh
|
Alain Reguera Delgado |
b29c5b |
#!/bin/bash
|
|
Alain Reguera Delgado |
b29c5b |
######################################################################
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# svg_setVacuumDefs.sh -- This function removes all unused items from
|
|
Alain Reguera Delgado |
b29c5b |
# the <lt>defs<gt> section of the SVG file.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# Written by:
|
|
Alain Reguera Delgado |
b29c5b |
# * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# Copyright (C) 2009-2013 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
b29c5b |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
b29c5b |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
b29c5b |
# your option) any later version.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
b29c5b |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
b29c5b |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
b29c5b |
# General Public License for more details.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
b29c5b |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
b29c5b |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
b29c5b |
#
|
|
Alain Reguera Delgado |
b29c5b |
######################################################################
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
function svg_setVacuumDefs {
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
inkscape --vacuum-defs ${FILE} 2&> /dev/null
|
|
Alain Reguera Delgado |
b29c5b |
|
|
Alain Reguera Delgado |
b29c5b |
}
|