#!/bin/bash
#
# Simple script that randomly returns success (0) or failure (1).
#
# Copyright 2023 BeyondCron Pty Ltd and related entities / All rights reserved.

expr $RANDOM % 2 > /dev/null

# end