You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | #!/bin/bash
for f in build/res/*.svg
do
	b=$(basename "$f")
	r=${b%.*}
#	"/c/Program Files/Inkscape/Inkscape.exe" $f --export-png=res/${r}.png
	"/c/Program Files/Inkscape/Inkscape.exe" $f --export-plain-svg=res/${r}.svg --export-text-to-path
#	if [[ "$OSTYPE" == "msys" ]]; then
#		unix2dos res/${r}.svg
#	fi
done
 |