mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
20 lines
1.3 KiB
Batchfile
20 lines
1.3 KiB
Batchfile
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
* *
|
||
* TIMELOGX.CMD *
|
||
* This program is called by TIMELOG.SUB. It reads the system WTMP file into *
|
||
* the WTMP.DBF data base for processing in TIMELOGY.CMD which is the next *
|
||
* command file to be called by the submit file. *
|
||
* *
|
||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
* * *
|
||
* Written By Michael Burch * Copyright (C) G&G Engineering 1982 *
|
||
* For Gifford Computer Systems * Reproduction or modification of this *
|
||
* Date: November 17, 1982 * program, in whole or in part, only with *
|
||
* Last Revision: 04/12/83 * written permission from G&G Engineering *
|
||
* * *
|
||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||
SET TALK OFF
|
||
USE wtmp
|
||
APPEND FROM wtmp. SDF
|
||
QUIT
|
||
|