Displaying 2 results from an estimated 2 matches for "myfifo1".
2009 May 28
2
question about using a remote system
Dear R People:
I would like to set up a plug-in for Rcmdr to do the following:
I would start on a Linux laptop. Then I would log into another
outside system and run a some commands.
Now, when I tried to do
system("ssh erin at xxx.edu")
password xxxxxx
It goes to the remote system. how do I continue to issue commands
from the Linux laptop please?
(hope this makes sense)
thanks,
2009 Jun 01
1
installing sn package
...-round. You will need to
get your toolbox out and get to grips with "Unix plmubing";
and, to make it accessible to R, you will need to create a
"Unix plumber".
The basic component is the FIFO, or "named pipe". To create
one of these, use a Linux command like
mkfifo myFIFO1
Then 'ls -l' in the directory you are working in will show this
pipe as present with the name "myFIFO1". For example, if in one
terminal window [A] you start the command
cat myFIFO1
then in another [B] you
echo "Some text to test my FIFO" > myFIFO1
you will f...