view bin/forever @ 53:c7720fefea26

Added helpers and info about building SWI Prolog
author daniel
date Thu, 14 May 2015 15:35:04 +0100
parents 7d34f4b6df69
children
line wrap: on
line source
#!/bin/sh
# Usage: forever <command> <arg> ...
# This will run a command plus any arguments repeatedly for ever unless command returns non-zero exit code
if $*; then
	exec forever $*
fi