2018-02-05 13:38:02 +01:00
|
|
|
#!/usr/bin/env bash
|
2012-10-04 19:33:47 +02:00
|
|
|
###########################################################################
|
|
|
|
# chstroke.sh
|
|
|
|
# ---------------------
|
|
|
|
# Date : November 2009
|
|
|
|
# Copyright : (C) 2009 by Juergen E. Fischer
|
|
|
|
# Email : jef at norbit dot de
|
|
|
|
###########################################################################
|
|
|
|
# #
|
|
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License as published by #
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
|
|
# (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
###########################################################################
|
|
|
|
|
2006-02-28 14:10:34 +00:00
|
|
|
|
|
|
|
# Globaly change given value of stroke-width parameter in SVG files
|
|
|
|
# to a new value
|
|
|
|
|
|
|
|
# Parameters: old_width new_width
|
|
|
|
|
2018-06-21 12:10:38 +10:00
|
|
|
for F in ./*.svg
|
2006-02-28 14:10:34 +00:00
|
|
|
do
|
|
|
|
cp $F svg.tmp
|
|
|
|
cat svg.tmp | sed "s/stroke-width:$1/stroke-width:$2/" > $F
|
|
|
|
done
|
|
|
|
|
|
|
|
rm svg.tmp
|