#!/bin/sh case "$1" in # At the start of zavai status) ;; # Run, blocking until the process ends run) exec sleep 10 ;; *) echo "Usage: $0 {run|status}." >&2 exit 1 ;; esac exit 0