#!/bin/bash
# forever:	repeat a command forever
while true; do
	"$@"
done
