jlcpcb progress

This commit is contained in:
rusefi 2019-12-30 16:27:46 -05:00
parent 0075f9492c
commit bbd9463a54
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,22 @@
set inputFile=../Common_Rail_MC33816.csv
set outputFile=MC33816_R0.3-bom.csv
echo "Translating from %inputFile% to %outputFile%"
echo Comment,Designator,Footprint,LCSC Part #> %outputFile%
grep JLCPCB %inputFile%
grep JLCPCB %inputFile% > %outputFile%.temp
sed -f removedoublecomma.sed %outputFile%.temp > %outputFile%.all
rem | gawk -F "," '{print $4}'

View File

@ -0,0 +1 @@
s/\,\,/\,/g