Home » Archimedes archive » Acorn User » AU 1997-06 B.adf » Extras » RiscUtils/!RuInstall/Install/!Help/Help/Text/Help/Comm-Rec
RiscUtils/!RuInstall/Install/!Help/Help/Text/Help/Comm-Rec
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Acorn User » AU 1997-06 B.adf » Extras |
Filename: | RiscUtils/!RuInstall/Install/!Help/Help/Text/Help/Comm-Rec |
Read OK: | ✔ |
File size: | 0B95 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
Command_Record : This command Records how many times the command 'Command_Record' has been issued each day. Why would anyone want know how how many times the 'Command_Record' command has been issued on a particular day? The main reason I know of, is that it enable's diary files to open from the boot sequence only the first time a computer is started up each day. The problem is that if someone likes to keep a diary file (e.g. an Edit file containing reminders - see docter etc. Telephone numbers etc.) it becomes anoying if opened from the Boot sequence every time the computer starts-up / is reset. What is more useful is if it is opened from the Boot sequence once or twice a day only. That way the file is still opened enough for the user to be reminded it's contents, but it is not opened every time the computer Boots up, which quite frankly becomes very anoying as once you have been reminded of something once or twice in a day, you are not likely to forget it for the rest of the day, and opening the diary file up any more times that day is pointless. Using Command_Record : Command record is very simple to use. There are no parameters, simply issue : Command_Record This sets a variable called 'Record' to '1 Time', '2 Times', '3 Times', or however many times the Command_Record command has been issued that day. Every time the 'Command_record' command is issued, the size of the variable 'Record' is increased by 1. For example if 'Record' currently = '2 Times', and I issue the 'Command_record' command, 'Record' will now = '3 Times' . If I issue the 'Command_record' command again, 'Record' now = '4 Times'. If I issue the 'Command_record' command again, 'Record' now = '5 Times'. And so on during the same day... (See the file RISCutils,User_area.Demo's.Com_RecCon to this in use) But, the first time the 'Command_record' command is issued the next day (reset at midnight), 'Record' will equal '1 Time'. So using this you can put the following lines in your Boot sequence after having run RISCutils : Command_record IF Record=�1 Time� THEN FILER_RUN ADFS::HardDisc4.$.Office.Files.diary Where ADFS::HardDisc4.$.Office.Files.diary = can be changed to the address of your diary file. To make the diary file open only at the begining of each day. Or the following lines can be used instead, to make the diary file open the 1st and 2nd time the machine is booted up each day : Command_record IF Record=�1 Time� OR Record="2 Times" THEN FILER_RUN ADFS::HardDisc4.$.Office.Files.diary This is only one use for the the command. There are many others, E.g. alternate start-up sequences - play Sound sample 1 if 'Record=1 Time', Sound sample 2 if 'Record=2 Times' etc. To activate the 'Command_record' component simply run 'RISCutils', with the 'Command_Record' option in RISCutil's !Run file set to 'Y'. To de-activate it run the file RISCutils.User_Area.Files.Remove, and run 'RISCutils', with the 'Command_Record' option set to 'N.'
00000000 0a 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 64 20 |.Command_Record | 00000010 3a 20 54 68 69 73 20 63 6f 6d 6d 61 6e 64 20 52 |: This command R| 00000020 65 63 6f 72 64 73 20 68 6f 77 20 6d 61 6e 79 20 |ecords how many | 00000030 74 69 6d 65 73 20 74 68 65 20 63 6f 6d 6d 61 6e |times the comman| 00000040 64 20 27 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 |d 'Command_Recor| 00000050 64 27 20 68 61 73 20 62 65 65 6e 20 69 73 73 75 |d' has been issu| 00000060 65 64 20 65 61 63 68 20 64 61 79 2e 20 57 68 79 |ed each day. Why| 00000070 20 77 6f 75 6c 64 20 61 6e 79 6f 6e 65 20 77 61 | would anyone wa| 00000080 6e 74 20 6b 6e 6f 77 20 68 6f 77 20 68 6f 77 20 |nt know how how | 00000090 6d 61 6e 79 20 74 69 6d 65 73 20 74 68 65 20 27 |many times the '| 000000a0 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 64 27 20 |Command_Record' | 000000b0 63 6f 6d 6d 61 6e 64 20 68 61 73 20 62 65 65 6e |command has been| 000000c0 20 69 73 73 75 65 64 20 6f 6e 20 61 20 70 61 72 | issued on a par| 000000d0 74 69 63 75 6c 61 72 20 64 61 79 3f 20 54 68 65 |ticular day? The| 000000e0 20 6d 61 69 6e 20 72 65 61 73 6f 6e 20 49 20 6b | main reason I k| 000000f0 6e 6f 77 20 6f 66 2c 20 69 73 20 74 68 61 74 20 |now of, is that | 00000100 69 74 20 65 6e 61 62 6c 65 27 73 20 64 69 61 72 |it enable's diar| 00000110 79 20 66 69 6c 65 73 20 74 6f 20 6f 70 65 6e 20 |y files to open | 00000120 66 72 6f 6d 20 74 68 65 20 62 6f 6f 74 20 73 65 |from the boot se| 00000130 71 75 65 6e 63 65 20 6f 6e 6c 79 20 74 68 65 20 |quence only the | 00000140 66 69 72 73 74 20 74 69 6d 65 20 61 20 63 6f 6d |first time a com| 00000150 70 75 74 65 72 20 69 73 20 73 74 61 72 74 65 64 |puter is started| 00000160 20 75 70 20 65 61 63 68 20 64 61 79 2e 20 0a 54 | up each day. .T| 00000170 68 65 20 70 72 6f 62 6c 65 6d 20 69 73 20 74 68 |he problem is th| 00000180 61 74 20 69 66 20 73 6f 6d 65 6f 6e 65 20 6c 69 |at if someone li| 00000190 6b 65 73 20 74 6f 20 6b 65 65 70 20 61 20 64 69 |kes to keep a di| 000001a0 61 72 79 20 66 69 6c 65 20 28 65 2e 67 2e 20 61 |ary file (e.g. a| 000001b0 6e 20 45 64 69 74 20 66 69 6c 65 20 63 6f 6e 74 |n Edit file cont| 000001c0 61 69 6e 69 6e 67 20 72 65 6d 69 6e 64 65 72 73 |aining reminders| 000001d0 20 2d 20 73 65 65 20 64 6f 63 74 65 72 20 65 74 | - see docter et| 000001e0 63 2e 20 54 65 6c 65 70 68 6f 6e 65 20 6e 75 6d |c. Telephone num| 000001f0 62 65 72 73 20 65 74 63 2e 29 20 69 74 20 62 65 |bers etc.) it be| 00000200 63 6f 6d 65 73 20 61 6e 6f 79 69 6e 67 20 69 66 |comes anoying if| 00000210 20 6f 70 65 6e 65 64 20 66 72 6f 6d 20 74 68 65 | opened from the| 00000220 20 42 6f 6f 74 20 73 65 71 75 65 6e 63 65 20 65 | Boot sequence e| 00000230 76 65 72 79 20 74 69 6d 65 20 74 68 65 20 63 6f |very time the co| 00000240 6d 70 75 74 65 72 20 73 74 61 72 74 73 2d 75 70 |mputer starts-up| 00000250 20 2f 20 69 73 20 72 65 73 65 74 2e 20 57 68 61 | / is reset. Wha| 00000260 74 20 69 73 20 6d 6f 72 65 20 75 73 65 66 75 6c |t is more useful| 00000270 20 69 73 20 69 66 20 69 74 20 69 73 20 6f 70 65 | is if it is ope| 00000280 6e 65 64 20 66 72 6f 6d 20 74 68 65 20 42 6f 6f |ned from the Boo| 00000290 74 20 73 65 71 75 65 6e 63 65 20 6f 6e 63 65 20 |t sequence once | 000002a0 6f 72 20 74 77 69 63 65 20 61 20 64 61 79 20 6f |or twice a day o| 000002b0 6e 6c 79 2e 20 54 68 61 74 20 77 61 79 20 74 68 |nly. That way th| 000002c0 65 20 66 69 6c 65 20 69 73 20 73 74 69 6c 6c 20 |e file is still | 000002d0 6f 70 65 6e 65 64 20 65 6e 6f 75 67 68 20 66 6f |opened enough fo| 000002e0 72 20 74 68 65 20 75 73 65 72 20 74 6f 20 62 65 |r the user to be| 000002f0 20 72 65 6d 69 6e 64 65 64 20 69 74 27 73 20 63 | reminded it's c| 00000300 6f 6e 74 65 6e 74 73 2c 20 62 75 74 20 69 74 20 |ontents, but it | 00000310 69 73 20 6e 6f 74 20 6f 70 65 6e 65 64 20 65 76 |is not opened ev| 00000320 65 72 79 20 74 69 6d 65 20 74 68 65 20 63 6f 6d |ery time the com| 00000330 70 75 74 65 72 20 42 6f 6f 74 73 20 75 70 2c 20 |puter Boots up, | 00000340 77 68 69 63 68 20 71 75 69 74 65 20 66 72 61 6e |which quite fran| 00000350 6b 6c 79 20 62 65 63 6f 6d 65 73 20 76 65 72 79 |kly becomes very| 00000360 20 61 6e 6f 79 69 6e 67 20 61 73 20 6f 6e 63 65 | anoying as once| 00000370 20 79 6f 75 20 68 61 76 65 20 62 65 65 6e 20 72 | you have been r| 00000380 65 6d 69 6e 64 65 64 20 6f 66 20 73 6f 6d 65 74 |eminded of somet| 00000390 68 69 6e 67 20 6f 6e 63 65 20 6f 72 20 74 77 69 |hing once or twi| 000003a0 63 65 20 69 6e 20 61 20 64 61 79 2c 20 79 6f 75 |ce in a day, you| 000003b0 20 61 72 65 20 6e 6f 74 20 6c 69 6b 65 6c 79 20 | are not likely | 000003c0 74 6f 20 66 6f 72 67 65 74 20 69 74 20 66 6f 72 |to forget it for| 000003d0 20 74 68 65 20 72 65 73 74 20 6f 66 20 74 68 65 | the rest of the| 000003e0 20 64 61 79 2c 20 61 6e 64 20 6f 70 65 6e 69 6e | day, and openin| 000003f0 67 20 74 68 65 20 64 69 61 72 79 20 66 69 6c 65 |g the diary file| 00000400 20 75 70 20 61 6e 79 20 6d 6f 72 65 20 74 69 6d | up any more tim| 00000410 65 73 20 74 68 61 74 20 64 61 79 20 69 73 20 70 |es that day is p| 00000420 6f 69 6e 74 6c 65 73 73 2e 0a 0a 55 73 69 6e 67 |ointless...Using| 00000430 20 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 64 20 | Command_Record | 00000440 3a 0a 0a 43 6f 6d 6d 61 6e 64 20 72 65 63 6f 72 |:..Command recor| 00000450 64 20 69 73 20 76 65 72 79 20 73 69 6d 70 6c 65 |d is very simple| 00000460 20 74 6f 20 75 73 65 2e 20 54 68 65 72 65 20 61 | to use. There a| 00000470 72 65 20 6e 6f 20 70 61 72 61 6d 65 74 65 72 73 |re no parameters| 00000480 2c 20 73 69 6d 70 6c 79 20 69 73 73 75 65 20 3a |, simply issue :| 00000490 0a 0a 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 64 |..Command_Record| 000004a0 0a 0a 54 68 69 73 20 73 65 74 73 20 61 20 76 61 |..This sets a va| 000004b0 72 69 61 62 6c 65 20 63 61 6c 6c 65 64 20 27 52 |riable called 'R| 000004c0 65 63 6f 72 64 27 20 74 6f 20 27 31 20 54 69 6d |ecord' to '1 Tim| 000004d0 65 27 2c 20 27 32 20 54 69 6d 65 73 27 2c 20 27 |e', '2 Times', '| 000004e0 33 20 54 69 6d 65 73 27 2c 20 6f 72 20 68 6f 77 |3 Times', or how| 000004f0 65 76 65 72 20 6d 61 6e 79 20 74 69 6d 65 73 20 |ever many times | 00000500 74 68 65 20 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f |the Command_Reco| 00000510 72 64 20 63 6f 6d 6d 61 6e 64 20 68 61 73 20 62 |rd command has b| 00000520 65 65 6e 20 69 73 73 75 65 64 20 74 68 61 74 20 |een issued that | 00000530 64 61 79 2e 20 45 76 65 72 79 20 74 69 6d 65 20 |day. Every time | 00000540 74 68 65 20 27 43 6f 6d 6d 61 6e 64 5f 72 65 63 |the 'Command_rec| 00000550 6f 72 64 27 20 63 6f 6d 6d 61 6e 64 20 69 73 20 |ord' command is | 00000560 69 73 73 75 65 64 2c 20 74 68 65 20 73 69 7a 65 |issued, the size| 00000570 20 6f 66 20 74 68 65 20 76 61 72 69 61 62 6c 65 | of the variable| 00000580 20 27 52 65 63 6f 72 64 27 20 69 73 20 69 6e 63 | 'Record' is inc| 00000590 72 65 61 73 65 64 20 62 79 20 31 2e 0a 0a 46 6f |reased by 1...Fo| 000005a0 72 20 65 78 61 6d 70 6c 65 20 69 66 20 27 52 65 |r example if 'Re| 000005b0 63 6f 72 64 27 20 63 75 72 72 65 6e 74 6c 79 20 |cord' currently | 000005c0 3d 20 27 32 20 54 69 6d 65 73 27 2c 0a 61 6e 64 |= '2 Times',.and| 000005d0 20 49 20 69 73 73 75 65 20 74 68 65 20 27 43 6f | I issue the 'Co| 000005e0 6d 6d 61 6e 64 5f 72 65 63 6f 72 64 27 20 63 6f |mmand_record' co| 000005f0 6d 6d 61 6e 64 2c 20 27 52 65 63 6f 72 64 27 20 |mmand, 'Record' | 00000600 77 69 6c 6c 20 6e 6f 77 20 3d 20 27 33 20 54 69 |will now = '3 Ti| 00000610 6d 65 73 27 20 2e 0a 49 66 20 49 20 69 73 73 75 |mes' ..If I issu| 00000620 65 20 74 68 65 20 27 43 6f 6d 6d 61 6e 64 5f 72 |e the 'Command_r| 00000630 65 63 6f 72 64 27 20 63 6f 6d 6d 61 6e 64 20 61 |ecord' command a| 00000640 67 61 69 6e 2c 20 27 52 65 63 6f 72 64 27 20 6e |gain, 'Record' n| 00000650 6f 77 20 3d 20 27 34 20 54 69 6d 65 73 27 2e 0a |ow = '4 Times'..| 00000660 49 66 20 49 20 69 73 73 75 65 20 74 68 65 20 27 |If I issue the '| 00000670 43 6f 6d 6d 61 6e 64 5f 72 65 63 6f 72 64 27 20 |Command_record' | 00000680 63 6f 6d 6d 61 6e 64 20 61 67 61 69 6e 2c 20 27 |command again, '| 00000690 52 65 63 6f 72 64 27 20 6e 6f 77 20 3d 20 27 35 |Record' now = '5| 000006a0 20 54 69 6d 65 73 27 2e 0a 41 6e 64 20 73 6f 20 | Times'..And so | 000006b0 6f 6e 20 64 75 72 69 6e 67 20 74 68 65 20 73 61 |on during the sa| 000006c0 6d 65 20 64 61 79 2e 2e 2e 0a 0a 28 53 65 65 20 |me day.....(See | 000006d0 74 68 65 20 66 69 6c 65 20 20 52 49 53 43 75 74 |the file RISCut| 000006e0 69 6c 73 2c 55 73 65 72 5f 61 72 65 61 2e 44 65 |ils,User_area.De| 000006f0 6d 6f 27 73 2e 43 6f 6d 5f 52 65 63 43 6f 6e 20 |mo's.Com_RecCon | 00000700 74 6f 20 74 68 69 73 20 69 6e 20 75 73 65 29 20 |to this in use) | 00000710 20 0a 0a 42 75 74 2c 20 74 68 65 20 66 69 72 73 | ..But, the firs| 00000720 74 20 74 69 6d 65 20 74 68 65 20 27 43 6f 6d 6d |t time the 'Comm| 00000730 61 6e 64 5f 72 65 63 6f 72 64 27 20 63 6f 6d 6d |and_record' comm| 00000740 61 6e 64 20 69 73 20 69 73 73 75 65 64 20 74 68 |and is issued th| 00000750 65 20 6e 65 78 74 20 64 61 79 20 28 72 65 73 65 |e next day (rese| 00000760 74 20 61 74 20 6d 69 64 6e 69 67 68 74 29 2c 20 |t at midnight), | 00000770 27 52 65 63 6f 72 64 27 20 77 69 6c 6c 20 65 71 |'Record' will eq| 00000780 75 61 6c 20 27 31 20 54 69 6d 65 27 2e 0a 0a 53 |ual '1 Time'...S| 00000790 6f 20 75 73 69 6e 67 20 74 68 69 73 20 79 6f 75 |o using this you| 000007a0 20 63 61 6e 20 70 75 74 20 74 68 65 20 66 6f 6c | can put the fol| 000007b0 6c 6f 77 69 6e 67 20 6c 69 6e 65 73 20 69 6e 20 |lowing lines in | 000007c0 79 6f 75 72 20 42 6f 6f 74 20 73 65 71 75 65 6e |your Boot sequen| 000007d0 63 65 20 61 66 74 65 72 20 68 61 76 69 6e 67 20 |ce after having | 000007e0 72 75 6e 20 52 49 53 43 75 74 69 6c 73 20 3a 0a |run RISCutils :.| 000007f0 0a 43 6f 6d 6d 61 6e 64 5f 72 65 63 6f 72 64 0a |.Command_record.| 00000800 49 46 20 52 65 63 6f 72 64 3d 94 31 20 54 69 6d |IF Record=.1 Tim| 00000810 65 95 20 54 48 45 4e 20 46 49 4c 45 52 5f 52 55 |e. THEN FILER_RU| 00000820 4e 20 41 44 46 53 3a 3a 48 61 72 64 44 69 73 63 |N ADFS::HardDisc| 00000830 34 2e 24 2e 4f 66 66 69 63 65 2e 46 69 6c 65 73 |4.$.Office.Files| 00000840 2e 64 69 61 72 79 0a 0a 57 68 65 72 65 20 41 44 |.diary..Where AD| 00000850 46 53 3a 3a 48 61 72 64 44 69 73 63 34 2e 24 2e |FS::HardDisc4.$.| 00000860 4f 66 66 69 63 65 2e 46 69 6c 65 73 2e 64 69 61 |Office.Files.dia| 00000870 72 79 20 3d 20 63 61 6e 20 62 65 20 63 68 61 6e |ry = can be chan| 00000880 67 65 64 20 74 6f 20 74 68 65 20 61 64 64 72 65 |ged to the addre| 00000890 73 73 20 6f 66 20 79 6f 75 72 20 64 69 61 72 79 |ss of your diary| 000008a0 20 66 69 6c 65 2e 0a 0a 54 6f 20 6d 61 6b 65 20 | file...To make | 000008b0 74 68 65 20 64 69 61 72 79 20 66 69 6c 65 20 6f |the diary file o| 000008c0 70 65 6e 20 6f 6e 6c 79 20 61 74 20 74 68 65 20 |pen only at the | 000008d0 62 65 67 69 6e 69 6e 67 20 6f 66 20 65 61 63 68 |begining of each| 000008e0 20 64 61 79 2e 20 4f 72 20 74 68 65 20 66 6f 6c | day. Or the fol| 000008f0 6c 6f 77 69 6e 67 20 6c 69 6e 65 73 20 63 61 6e |lowing lines can| 00000900 20 62 65 20 75 73 65 64 20 69 6e 73 74 65 61 64 | be used instead| 00000910 2c 20 74 6f 20 6d 61 6b 65 20 74 68 65 20 64 69 |, to make the di| 00000920 61 72 79 20 66 69 6c 65 20 6f 70 65 6e 20 74 68 |ary file open th| 00000930 65 20 31 73 74 20 61 6e 64 20 32 6e 64 20 74 69 |e 1st and 2nd ti| 00000940 6d 65 20 74 68 65 20 6d 61 63 68 69 6e 65 20 69 |me the machine i| 00000950 73 20 62 6f 6f 74 65 64 20 75 70 20 65 61 63 68 |s booted up each| 00000960 20 64 61 79 20 3a 0a 0a 43 6f 6d 6d 61 6e 64 5f | day :..Command_| 00000970 72 65 63 6f 72 64 0a 49 46 20 52 65 63 6f 72 64 |record.IF Record| 00000980 3d 94 31 20 54 69 6d 65 95 20 4f 52 20 52 65 63 |=.1 Time. OR Rec| 00000990 6f 72 64 3d 22 32 20 54 69 6d 65 73 22 20 54 48 |ord="2 Times" TH| 000009a0 45 4e 20 46 49 4c 45 52 5f 52 55 4e 20 41 44 46 |EN FILER_RUN ADF| 000009b0 53 3a 3a 48 61 72 64 44 69 73 63 34 2e 24 2e 4f |S::HardDisc4.$.O| 000009c0 66 66 69 63 65 2e 46 69 6c 65 73 2e 64 69 61 72 |ffice.Files.diar| 000009d0 79 0a 0a 54 68 69 73 20 69 73 20 6f 6e 6c 79 20 |y..This is only | 000009e0 6f 6e 65 20 75 73 65 20 66 6f 72 20 74 68 65 20 |one use for the | 000009f0 74 68 65 20 63 6f 6d 6d 61 6e 64 2e 20 54 68 65 |the command. The| 00000a00 72 65 20 61 72 65 20 6d 61 6e 79 20 6f 74 68 65 |re are many othe| 00000a10 72 73 2c 20 45 2e 67 2e 20 61 6c 74 65 72 6e 61 |rs, E.g. alterna| 00000a20 74 65 20 73 74 61 72 74 2d 75 70 20 73 65 71 75 |te start-up sequ| 00000a30 65 6e 63 65 73 20 2d 20 70 6c 61 79 20 53 6f 75 |ences - play Sou| 00000a40 6e 64 20 73 61 6d 70 6c 65 20 31 20 69 66 20 27 |nd sample 1 if '| 00000a50 52 65 63 6f 72 64 3d 31 20 54 69 6d 65 27 2c 20 |Record=1 Time', | 00000a60 53 6f 75 6e 64 20 73 61 6d 70 6c 65 20 32 20 69 |Sound sample 2 i| 00000a70 66 20 27 52 65 63 6f 72 64 3d 32 20 54 69 6d 65 |f 'Record=2 Time| 00000a80 73 27 20 65 74 63 2e 0a 0a 54 6f 20 61 63 74 69 |s' etc...To acti| 00000a90 76 61 74 65 20 74 68 65 20 27 43 6f 6d 6d 61 6e |vate the 'Comman| 00000aa0 64 5f 72 65 63 6f 72 64 27 20 63 6f 6d 70 6f 6e |d_record' compon| 00000ab0 65 6e 74 20 73 69 6d 70 6c 79 20 72 75 6e 20 27 |ent simply run '| 00000ac0 52 49 53 43 75 74 69 6c 73 27 2c 20 77 69 74 68 |RISCutils', with| 00000ad0 20 74 68 65 20 27 43 6f 6d 6d 61 6e 64 5f 52 65 | the 'Command_Re| 00000ae0 63 6f 72 64 27 20 6f 70 74 69 6f 6e 20 69 6e 20 |cord' option in | 00000af0 52 49 53 43 75 74 69 6c 27 73 20 21 52 75 6e 20 |RISCutil's !Run | 00000b00 66 69 6c 65 20 73 65 74 20 74 6f 20 27 59 27 2e |file set to 'Y'.| 00000b10 20 54 6f 20 64 65 2d 61 63 74 69 76 61 74 65 20 | To de-activate | 00000b20 69 74 20 72 75 6e 20 74 68 65 20 66 69 6c 65 20 |it run the file | 00000b30 52 49 53 43 75 74 69 6c 73 2e 55 73 65 72 5f 41 |RISCutils.User_A| 00000b40 72 65 61 2e 46 69 6c 65 73 2e 52 65 6d 6f 76 65 |rea.Files.Remove| 00000b50 2c 20 61 6e 64 20 72 75 6e 20 27 52 49 53 43 75 |, and run 'RISCu| 00000b60 74 69 6c 73 27 2c 20 77 69 74 68 20 74 68 65 20 |tils', with the | 00000b70 27 43 6f 6d 6d 61 6e 64 5f 52 65 63 6f 72 64 27 |'Command_Record'| 00000b80 20 6f 70 74 69 6f 6e 20 73 65 74 20 74 6f 20 27 | option set to '| 00000b90 4e 2e 27 0a 0a |N.'..| 00000b95