#!/bin/bash
#
# Simple script that randomly returns success (0) or failure (1).

expr $RANDOM % 2 > /dev/null

# end