mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 23:49:49 +00:00
5 lines
132 B
Bash
Executable file
5 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for opt in "$@" ; do
|
|
eval "sed -i 's/\/\/ *\(#define +$opt[^a-zA-Z0-9_]\)/\1/g' Marlin/Configuration.h"
|
|
done
|