From 19e51a8f318e9b4a14d1ca0903fd1ddf15243be7 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Sat, 1 Oct 2022 19:50:57 +0200 Subject: [PATCH] :sparkles: add method of retrieving random float (`rand` command) --- doc/concept.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/concept.sh b/doc/concept.sh index cedee35..d6c3b45 100644 --- a/doc/concept.sh +++ b/doc/concept.sh @@ -225,6 +225,9 @@ time $1 # get formated time => $1 time $1 "YYYY-MM-DD" +# get random float between 0.0 and 1.0 => $1 +rnd|rand|random $1 + # get random integer between 0 and 3 => $1 rnd|rand|random $1 3