Skip to content

Instantly share code, notes, and snippets.

@fordnox
Created November 1, 2023 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fordnox/66a0efa0ca092a121cef19018563e36f to your computer and use it in GitHub Desktop.
Save fordnox/66a0efa0ca092a121cef19018563e36f to your computer and use it in GitHub Desktop.
Random echo between 2 values in Makefile
#!make
run:
@if [ $$(($$RANDOM % 2)) -eq 0 ]; then \
echo 1; \
else \
echo 2; \
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment