From 21e7deacec7736b72f56e81c5351acc97b7d9996 Mon Sep 17 00:00:00 2001 From: fbt Date: Wed, 1 Aug 2018 18:03:25 +0300 Subject: [PATCH] posix shell implementation Signed-off-by: fbt --- README.md | 6 +++++- fake.sh | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 fake.sh diff --git a/README.md b/README.md index 97f0c19..1a5fa15 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # fake -Fake is an app to use as a more talkative `true` so that it ends up in logs and shit. +Fake is an idea for a simple executable to use as a more talkative `true` so that it ends up in logs and shit. +This is a trivial idea that is somehow not part of any base utils package, so here are several implementations +you can grab, package and use. + +Or spend 15 nanoseconds and write your own. diff --git a/fake.sh b/fake.sh new file mode 100644 index 0000000..95d3eb1 --- /dev/null +++ b/fake.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +echo "[fake] Doing nothing; called as: $0 $*" +exit 0