#!/bin/sh
#
# run-cyc.sh
#
# Shell script to execute the cyc server
#
# written by Stephen Reed  2/6/2002
#
# After some time loading the world into memory you will see CYC(1):
# which is the SubL command prompt.
# [optional] 
# You can enter SubL expressions such as (+ 1 2) or (genls #$Person)
# or (all-genls #$Person) at the command line to verify Cyc's operation.
# 
# At this point the cyc http server is running and you can access
# Cyc directly via the local web browser.
# http://localhost:3062/cgi-bin/cyccgi/cg?cb-start
# You can browse cyc via the Guest account or perform updates by
# logging on as CycAdminstrator.
#
# As a security measure, Cyc only accepts tcp connections from the
# computer that it runs on.  You can forward ports via ssh to enable
# remote clients, or provide middleware to do the same. 
#
# see the file parameters.lisp in the init directory for startup 
# options including choice of tcp ports utilized.

cd ../../run
bin/latest.bin -w world/latest.load



