tools to search-replace schematic symbol fields

and fix broken gerbers created by debian kicad5-rc2
pull/3/head
davor 6 years ago
parent 0f2358eeb7
commit 8a01ee5082

@ -0,0 +1 @@
s/ %TA/ TA/g

@ -0,0 +1,9 @@
#!/bin/sh
# fix for stray "%" in gerbers
# G04 Created by KiCad (PCBNEW 5.0.0-rc2+dfsg1-2) date Wed Jun 6 21:24:22 2018*
for file in plot/*.g[btm]?
do
sed -i -f tools/gerbfix5.sed $file
done

@ -0,0 +1,13 @@
#!/bin/sh
#Bsed -fi analog.sch
#blinkey.sch
#flash.sch
#gpdi.sch
#Bgpio.sch
#power.sch ram.sch sdcard.sch ulx3s.sch usb.sch wifi.sch
for file in *.sch
do
sed -i -f schemchange.sed $file
done

@ -0,0 +1,3 @@
s/"MFG_PN"/"MPN"/g
s/"Distributor1_PN"/"Mouser"/g
s/"Distributor1_URL"/"Mouser_URL"/g
Loading…
Cancel
Save