So, as I understand it, valid shell script variable names are [0-9ABC...Zabc...z_]--also listed in /usr/share/bsdconfig/sysrc.subr-. When I use `sysrc(8)` on my rc.conf file, everything is great but I cannot use `sysrc(8)` on jail.conf because that file has "non-valid" variable names.
EX: host.hostname = "${name}";
I noticed that in the `sysctl(8)` this dotted style is refered to as: "Management Information Base" ("MIB") style. Is there anything like `sysrc(8)` that can work with 'MIB' style variable names in other files (like jail.conf)?
EX: host.hostname = "${name}";
I noticed that in the `sysctl(8)` this dotted style is refered to as: "Management Information Base" ("MIB") style. Is there anything like `sysrc(8)` that can work with 'MIB' style variable names in other files (like jail.conf)?