/usr/share/ess/etc/BACKBUG5.BAT is in ess 12.04-4-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 | @echo off
rem ESS[BUGS]: 02/18/2004
rem runs BUGS taking commands from command file
if not "%2"=="" goto 20
if not "%1"=="" goto 10
echo usage: backbug5 [default_output_name] command_file
goto 40
:10
if exist bugs.bog attrib -r bugs.bog
bugs05.exe bugs.buf bugs.bog bugs.out bugs.ind bugs1.out bugs1.ind %1
copy /y bugs.log bugs.bog
attrib +r bugs.bog
goto 40
:20
set one=1
if exist %1.bog attrib -r %1.bog
bugs05.exe %1.buf %1.bog %1.out %1.ind %1%one%.out %1%one%.ind %2
copy /y %1.log %1.bog
attrib +r %1.bog
goto 40
:40
|