Fileless execution completely in memory execution of binaries without creating
temporary files or touching the disk is possible using MemoryFD. A rewrite of
the standard library exec
providing all the same functionality except the
Command()
function does not take a path string
but instead takes a []byte binary executable
which is loaded into a memory file descriptor. After this
initial function, everything else has the exact same API.