From 81f12399fe5c9c524c24c14891432181a87354e4 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Mon, 4 Jun 2018 18:59:07 +0200 Subject: [PATCH] Add compatibility notice in make --- _gtfobins/make.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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: |