I was trying to add the command run LB:[3,54]timwrt to my [1,2]shutup.cmd file.
The shutup.cmd file is called by the shutup task (run $shutup).
when the run command is called in shutup.cmd the following error is displayed:
>run LB:[3,54]timwrt
INS -- Task name already in use
If I just execute @[1,2]shutup the command run timwrt works with out problem.
So it seems @[1,2]shutup.cmd being invoked from the shutup task is an issue when trying use the run command in this case.
I put together the following script that does the same thing as timwrt that can be called by [1,2]shutup.cmd.
[1,2]SAVCTIME.CMD
.ENABLE SUBSTITUTION,QUIET
.PARSE <TIME> ":" HOUR MIN SEC
.SETS CURDAT <DATE>
.OPEN LB:[1,5]TIM.TXT
.DATA 'HOUR':'MIN' 'CURDAT'
.CLOSE
PIP LB:[1,5]TIM.TXT;*/PU:4
.DISABLE QUIET
; Updated LB:[1,5]TIM.TXT with 'HOUR':'MIN' 'CURDAT'
>@[1,2]SAVCTIME
>; Updated LB:[1,5]TIM.TXT with 19:16 26-DEC-2025
>@ <EOF>
>TYPE [1,5]TIM.TXT
19:16 26-DEC-2025
Using the above script [1,5]tim.txt gets updated at shutdown.