1#!/bin/bash 2 3OUTPUT_default=res/values/strings.xml 4OUTPUT_v26=res/values-v26/strings.xml 5 6echo "<resources>" > $OUTPUT_default 7echo "<resources>" > $OUTPUT_v26 8for i in {0..999} 9do 10 echo " <string name=\"foo_$i\">$i</string>" >> $OUTPUT_default 11 if [ "$(($i % 3))" -eq "0" ] 12 then 13 echo " <string name=\"foo_$i\">$(($i * 10))</string>" >> $OUTPUT_v26 14 fi 15done 16echo "</resources>" >> $OUTPUT_default 17echo "</resources>" >> $OUTPUT_v26 18 19