I was thinking in how to include some metadata in my script files in a way that other scripts could process this information without interfering in its ./
execution.
YAML Front Matter came to my mind, but obviously its ---
syntax produce error either in #!/bin/bash
as in #!/usr/bin/python3
, for example.
- Is there some simple way to allow a non-comment block (as Front Metter's one) to be ignored by script
./
execution? - Or any other known way to make a file carry some metadatas possible to be accessed anyway without interfer in its generic execution?