From 9851a553e47892655027885b943be786f27cdf62 Mon Sep 17 00:00:00 2001 From: nojhan Date: Sat, 21 Apr 2012 22:29:57 +0200 Subject: [PATCH] export only the given path --- export.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export.sh b/export.sh index db8b539..11d7a68 100755 --- a/export.sh +++ b/export.sh @@ -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//`