export only the given path

This commit is contained in:
nojhan 2012-04-21 22:29:57 +02:00
commit 9851a553e4

View file

@ -1,7 +1,7 @@
#!/bin/sh
# for each svg file
for svg in `find . -name *.svg` ; do
for svg in `find $1 -name *.svg` ; do
# the complete filename without the extension
base=`echo $svg | sed s/.svg//`