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