aboutsummaryrefslogtreecommitdiff
path: root/bin/myb
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-03 17:57:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-03 18:03:38 +1200
commit8783a7ba4fccb5f8bb178241a98392cb4b6f6f6c (patch)
tree9323cf3529ba1c809beed46256889b8ee88c6d0d /bin/myb
parentAllow numerator and denominator in myb(1) (diff)
downloaddotfiles-8783a7ba4fccb5f8bb178241a98392cb4b6f6f6c.tar.gz
dotfiles-8783a7ba4fccb5f8bb178241a98392cb4b6f6f6c.zip
Add rnds(1)
Low-quality random seed attempt.
Diffstat (limited to 'bin/myb')
-rwxr-xr-xbin/myb3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/myb b/bin/myb
index 11827fdd..03937a31 100755
--- a/bin/myb
+++ b/bin/myb
@@ -20,4 +20,5 @@ if [ "$((num >= 0 || den >= 1))" -ne 1 ] ; then
fi
# Perform the test; that's our exit value
-test "$(rndi 1 "$den")" -le "$num"
+seed=$(rnds)
+test "$(rndi 1 "$den" "$seed")" -le "$num"