Информационный сервер для программистов: Исходники со всего света. Паскальные исходники со всего света
  Powered by Поисковый сервер Яndex: Найдется ВСЁ!
На Главную Pascal Форум Информер Страны мира
   Дата и Время    >>    tef11
   
 
 TEF 1.1 - Timed Execution Facility   Rich Holland 10.07.1992

Программа для запуска в указанное время внешних программ.
TEF is an utility useful to execute some programs at a certain time (f.e. in the middle of the night, when you asleep)



7k 
 

PROGRAM Timed_Execution_Facility; {v1.1 Toad Hall Tweak - Original TEF10 at SIMTEL20 appeared to be broken: it was missing a big chunk of the source. Received a shiny new TEF10.PAS source from the author, and of course couldn't keep my fingers off it. - Very minor tweaks, no functional changes. - Standardized source case via CONV_P Pascal conversion utility. } +---------------------------------------------------------------------+ | PROGRAM: TEF (Timed Execution Facility | | VERSION: 1.0 | | AUTHOR : Rich Holland | +---------------------------------------------------------------------+ | SYNTAX : TEF 24-hr-time command | +---------------------------------------------------------------------+ | PURPOSE: I needed to execute some programs at a certain time | | (usually the middle of the night, when I was asleep) | | like backing up my hard drive to tape. TEF was my | | solution. You enter the time in 24-hour format and the | | command to execute at that time. You can NOT use | | switches, so if you need a command with arguments or | | switches, you'll either need to modify TEF, or (even | | easier) write a batch file that just has the command in | | it. For example, to execute a 'dir C:\ /w' command, you | | could write a file like this (call it something like | | A.BAT, for example): | | | | @echo off | | dir C:\ /w | | | | and execute it with: | | | | TEF 23:00 A | | | | The program is pretty well documented internally, and as | | far as I know, bug free. When run, TEF will clear the | | screen and put up a status display with the current time, | | the time it's going to go off, and the command it's going | | to execute. You can hit ALT-X to abort it anytime. | +---------------------------------------------------------------------+ | CONTACT: You can reach me at any of the following reliably: | | Internet: holland@matt.ksu.ksu.edu | | Bitnet : holland@ksuvm | | UUCP : ...!rutgers!matt.ksu.ksu.edu!holland | +---------------------------------------------------------------------+