Fixed problem in DeviceSettings::strParam, returned wrong string
[avr-sim.git] / tools / convert.sh
blobd032c887ee835ecfbfcc8d087dfa892e2a9933ba
1 #!/bin/bash
3 DIR=../../Partdescriptionfiles
5 echo > error
6 ls $DIR | while read i; do
7 name=$( (echo ${i%.xml} | tr "A-Z" "a-z") )
8 echo $name
9 xsltproc convert.xsl $DIR/$i > $name 2>> error
10 done