If you start a non-interactive bash shell it will source the content of the file defined in BASH_ENV (and ENV for a POSIX shell).
August 15, 2025
All I got up to this day (as far as you know)
3 posts on this day
The YAML anchors to name a reusable section are defined by &name and then to use them to replace the value of something you do *name, if you want to “unsplat”/merge a dictionary/object then use <<: *name and then it’ll insert it at that point.
YAML does not support unsplatting lists (basically, merging list items inline like you can with objects) and that’s intentional.
[… more]