vote up 2 vote down star

Is there a way to make an rpc call to a node, but have the output displayed on that node, not just on the calling node ( in fact I would not be too bothered if the calling node did not display the output ).

While I understand that I can use

rpc:call( Node, erlang, display, [ someTerm ] ).

and that will display "someTerm" on Node, what I really want is to get the result of an executed method displayed on the remote node terminal, so that given the attempt to run ls on Node :

rpc:call( Node, c, ls, [] ).

it will actually write the results the folder contents to the terminal of Node.

The idea being that I can drive a presentation from a single node, but have the nodes I am driving display the history of actions on them.

flag

50% accept rate
rpc:call( Node, c, ls, [] ) is showing result on node() but not on Node. Do you mean you want see result on Node? Your last sentence say it. – Hynek -Pichi- Vychodil May 17 at 20:10

1 Answer

vote up 3 vote down check

Try ;-)

rpc:call( Node, c, ls, [] ).

or when you want display it on Node

spawn(Node, fun()->group_leader(whereis(user),self()), c:ls() end).

or much more funny example which redirect output of local process to another terminal of Node

group_leader(rpc:call(Node, erlang, whereis, [user]), self()),
c:ls(),
group_leader(whereis(user), self()).
link|flag
apologies.. I expressed that very poorly - I have re-expressed – Stephen Bailey May 17 at 6:25
I have added example how redirect output to another node. – Hynek -Pichi- Vychodil May 17 at 20:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.