/usr/share/doc/fbbdoc/html/fmtrunfb.htm is in fbbdoc 1:1999-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Format of RUNFBB.BAT</title>
</head>
<body background="/back_fbb.jpg">
<h1 align="Center"> RUNFBB.BAT </h1>
<p align="Center"> <font color="#ff0000"><big>Only for WinFBB</big> !</font>
</p>
<pre><big><b>RUNFBB.BAT (\FBB\BIN).</b></big>
This is the very first file that WinFBB will use. You will find it in
\FBB\BIN-directory. You don't really need to do any changes in this file,
unless you did some changes during the installation-process. If you did,
you must change the pathnames in RUNFBB.BAT exactly the same as you did
during the installation.
This is very important ! So look for the lines that I have marked with
an <font color="#ff0000"><---</font> here :<br><br>@echo off<br>rem -------------------------------------------------<br>rem This file is run from RUNFBB.EXE. Only the relevant part is started.<br>rem It can be START, STOP, RERUN, MAINT or ERROR.<br>rem Do not forget to type "goto end" at the end of each section !<br>rem --------------------------------------------------<br><br>break off<br>set fbb=C:\FBB <font color="#ff0000"><----</font>
goto %1
:start ********************** START of START script ************************
echo off
cd %fbb%
goto end
rem *************************** END of START script **************************
:rerun *********************** START of RERUN script ************************
cd %fbb%
goto end
rem **************************** END of RERUN script **************************
:maint ********************** START of MAINT script **************************
cd %fbb%
@echo off
cd %fbb%\system\sat <font color="#ff0000"><----</font> <br> if not exist amsat.txt goto amsatend<br> satupdat amsat.txt /n > satupdat.res<br> satupdat amsat.txt >> satupdat.res<br> del amsat.txt<br> :amsatend<br> echo Backup of important files<br> copy %fbb%\system\dirmes.sys %fbb%\backup\dirmes.s1 <font color="#ff0000"><----</font> <br> copy %fbb%\system\inf.sys %fbb%\backup\inf.s1 <font color="#ff0000"><----</font>
echo Cleaning up messages...
del epurmess.res
epurmess
rem EPURWP Parametre: Number of days before update, and delete
rem Default is 40 and 90
epurwp 45 95
del %fbb%\system\wp\wp.old <font color="#ff0000"><----</font>
cd %fbb%\system
clr_user>>%fbb%\clr_user.res <font color="#ff0000"><----</font>
MAINTINF 3 /a
COPY %FBB%\SYSTEM\INF.NEW %FBB%\SYSTEM\INF.SYS <font color="#ff0000"><----</font>
cd %fbb%
del %fbb%\system\dirmes.new <font color="#ff0000"><----</font>
del %fbb%\system\dirmes.old <font color="#ff0000"><----</font>
if not exist %fbb%\error.sys goto direct <font color="#ff0000"><----</font>
rem ---------------------------------------------------
rem --- If you want a message when errors have occured:
rem --- <font color="#ff0000">PLEASE exchange LA6CU with your own callsign !!!! </font>
rem echo SP LA6CU >> %FBB%\MAIL.IN <font color="#ff0000"><----</font>
rem echo Error-report >> %FBB%\MAIL.IN <font color="#ff0000"><----</font>
rem type %FBB%\ERROR.SYS >> %FBB%\MAIL.IN <font color="#ff0000"><----</font>
rem echo. >> %FBB%\MAIL.IN <font color="#ff0000"><----</font> <br> rem ECHO /EX >> %FBB%\MAIL.IN <font color="#ff0000"><----</font>
rem type %FBB%\ERROR.SYS >> %FBB%\ERROR.LOG <font color="#ff0000"> <----</font>
rem del %FBB%\ERROR.SYS <font color="#ff0000"><----</font>
rem ---------------------------------------------------
:direct
goto end
rem **************************** END of MAINT script ************************
:stop ************************* START of STOP script *************************
goto end
rem ***************************** END av STOP script *************************
:error ********************** START av ERROR script *************************
echo WFBB exited with ERRORLEVEL %2
sleep 5
goto end
rem **************************** END av ERROR script **************************
:end
echo %1 script is finished.
sleep 2
<font color="#800000">This page was last updated 17-Apr-99</font>
</pre>
</body>
</html>
|