I am running certain commands in a loop and would like to open its output in libreoffice (calc), without storing it.
This is what I have tried:
libreoffice --calc <(process m n)
libreoffice --calc < $(process m n)
process m n | libreoffice --calc
I am getting an error in the first two, whereas for the third one, it opens libreoffice, but no file!
However if I save the output of process
to a file f
and open libreoffice f
, it works!
Is it that I am doing something wrong, or its a limitation of libreoffice? My question is is there any way to avoid local storage?