If I open a terminal and use the following commands, are they "run in memory"?
$ curl -s http://website.com/file.py | python - &
$ command=$(curl -s http://website.com/file.py); $(echo $command | python - &)
(I'm not sure that second example will actually work. I was just trying to come up with an example that utilized variables.)
In macOS (or any Unix system), what does it mean to run a command in memory?
How do we run commands in memory?