#!/bin/ksh # $Revision: 1.7 $ #------------------------------------------------------------------------------ # # Copyright (C) 1994 Taligent, Inc. All rights reserved. # # Project: ConcurrentActors # File: ConcurrentActorsApp # Build/Version: 1.0.0 # # Description: Script for launching ConcurrentActors program via # RunDocument. You can supply a document name. If that # document exists, it will open the old document. If # it doesn't, it creates and opens a new document. If # you don't supply a document name, RunDocument will # use "Untitled" as the new document to try and create. # #------------------------------------------------------------------------------ if [ -n "$1" -a -d $TaligentRoot/Places/DefaultUserHomePlace/$1 ]; then echo "RunDocument -o $1" RunDocument -o $1 else echo 'RunDocument -c -o "TGUIModelViewStationeryFor" ConcurrentActors' $1 RunDocument -c -o "TGUIModelViewStationeryFor" ConcurrentActors $1 fi