forked from tbamud/tbamud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vms_autorun.com
executable file
·37 lines (37 loc) · 956 Bytes
/
vms_autorun.com
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$!
$! VMS_AUTORUN.COM
$! Written By: Robert Alan Byer
$! Vice-President
$! A-Com Computing, Inc.
$!
$! This script is used to run the CircleMUD executable as a detached
$! process.
$!
$! This ONLY runs the CircleMUD CIRCLE executable, it does NOT do anything
$! else extra that the Unix "autorun" script does.
$!
$! To have the CIRCLE executable execute under a different UIC, change the
$! variable UIC below.
$!
$! To customize the CIRCLE startup, edit the [.BIN]VMS_CIRCLEMUD.COM file.
$!
$!
$! Define The UIC The CIRCLE.EXE Is To Execute Under.
$!
$ UIC = "SYSTEM"
$!
$! Run [.BIN]VMS_CIRCLEMUD.COM As A Detached Process.
$!
$ RUN/DETACHED -
/PROCESS_NAME= "CircleMUD" -
/UIC=['UIC'] -
/INPUT=CIRCLEMUD_BIN:VMS_CIRCLEMUD.COM -
/OUTPUT=SYSLOG.LOG -
/ERROR=SYSLOG.ERROR -
SYS$SYSTEM:LOGINOUT.EXE
$!
$! Time To Exit.
$!
$ EXIT