OK! I think I figured out why I was running into issues. I recreated the SARndbox.pipe file in the /bin directory with mknod SARndbox.pipe p
.
If you do it this way it does not create a SARndbox.fifo
named pipe file. So if I try to reference it with SARndbox -uhm -fpv -cp SARndbox.fifo
or send it commands like echo "colorMap <color map file>" > SARndbox.fifo
it doesn’t work.
So the solution is very simple 🙂 I changed any reference toSARndbox.fifo
to SARndbox.pipe
and voila! Everything works great! I can update the color maps with a simple script just how you outlined above in real time.