mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12276 c8812cc2-4d05-0410-92ff-de0c093fc19c
15 lines
256 B
Bash
Executable File
15 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Globaly change given value of stroke-width parameter in SVG files
|
|
# to a new value
|
|
|
|
# Parameters: old_width new_width
|
|
|
|
for F in `ls *.svg`
|
|
do
|
|
cp $F svg.tmp
|
|
cat svg.tmp | sed "s/stroke-width:$1/stroke-width:$2/" > $F
|
|
done
|
|
|
|
rm svg.tmp
|