2016-03-22 10:13:38 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-09-06 07:28:32 -04:00
|
|
|
restore_configs
|
2016-07-16 08:00:43 -04:00
|
|
|
|
2020-01-15 00:56:54 -05:00
|
|
|
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/examples"
|
2018-10-12 22:15:54 -04:00
|
|
|
|
2020-01-15 00:56:54 -05:00
|
|
|
cd Marlin
|
2017-09-06 07:28:32 -04:00
|
|
|
|
2020-01-15 00:56:54 -05:00
|
|
|
wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
|
|
|
|
wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
|
|
|
|
wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
|
|
|
|
wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
|
|
|
|
rm -f wgot
|
2018-07-06 22:10:09 -04:00
|
|
|
|
2020-01-15 00:56:54 -05:00
|
|
|
cd - >/dev/null
|