diff --git a/_gtfobins/make.md b/_gtfobins/make.md index 1dc4451..c5ab66a 100644 --- a/_gtfobins/make.md +++ b/_gtfobins/make.md @@ -1,4 +1,18 @@ --- +description: | + All these examples only work with GNU `make` due to the lack of support of the + `--eval` flag. The same can be achieved by using a proper `Makefile` of by + passing the content via stdin, that is: + + ``` + make -s --eval= + ``` + + becomes: + + ``` + make -s -f <(echo ) + ``` functions: execute-interactive: - code: |