mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-05 09:16:52 +00:00
5 lines
134 B
Bash
Executable file
5 lines
134 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for opt in "$@" ; do
|
|
eval "sed -i 's/\/\/[[:blank:]]*\(#define \b${opt}\b\)/\1/g' Marlin/Configuration.h"
|
|
done
|