docs: PR-558.md optimization.

This commit is contained in:
Jerzy Jamroz
2025-06-11 13:34:51 +02:00
committed by Andrew Johnson
parent 4fbe6daab7
commit 4edf6baae2

View File

@@ -1,6 +1,6 @@
### New atInit Command Added
### New ```atInit``` IOC Shell Command Added
This pull request introduces a new IOC shell command `atInit` to EPICS Base, which allows users to schedule arbitrary commands to be executed automatically after the IOC initialization phase (`iocInit`).
The pull request ```PR #558``` introduces a new IOC shell command `atInit` to EPICS Base, which allows users to schedule arbitrary commands to be executed automatically after the IOC initialization phase (`iocInit`).
The module allows you to write better-structured ioc shell files to include in your startup scripts without tracking where iocInit is located (and how IOC is deployed) e.g.:
- to achieve the best maintainability,
@@ -22,7 +22,3 @@ The module allows you to write better-structured ioc shell files to include in y
- Registration and execution of commands scheduled with `atInit`.
- Proper handling of empty or invalid commands without crashing the IOC.
- Execution order and environment variable effects.
---
This note documents the functionality introduced in PR #558.