#!/bin/sh test -z "$ENGINE" && ENGINE=./gforth if [ -x $ENGINE ] then path1="$1" path2="$2" shift; shift set -x -v $ENGINE -i @kernel_fi@ $path1 $path2 exboot.fs startup.fs "$@" else @PREFORTH@ "$@" fi