I need to share variables between different Children processes and my Parent process in Perl without the use of IPC::Shareable.
I basically just need to have a global variable that all processes would be able to read/write to. Also, the variable only needs write access from the parent if that would make my answer simpler. The Children only need to read it.
Edit: My problem could also be solved if there is a way for me to pass a message from one child process to another