Arduino Yún - Running a sample python script from Arduino using Process

Hey,

I am trying to run a python script which is on my linino using process. How do I go about this.

I tried running a shell command which creats a fifo file, but it does not seem to be reflecting on Linono. (I know these are two different things, but first I wanted to try this)

#include <Process.h>

void setup() {
Bridge.begin();
Serial.begin(9600);
Process p;
p.runShellCommand("mkfifo abcdsad");
}

void loop() {
}

Any input will be appreciated

Please don't post the same question in numerous places.

That command will run in "current directory", but I think you missed it. It's better to specify a full path, likemkfifo /tmp/asdasd