mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
7 lines
169 B
Bash
Executable file
7 lines
169 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SED=$(which gsed || which sed)
|
|
|
|
for opt in "$@" ; do
|
|
eval "${SED} -i 's/\/\/[[:blank:]]*\(#define \b${opt}\b\)/\1/g' Marlin/Configuration.h"
|
|
done
|