> system("echo 'Hello World!'")
Hello World!
> # create hw.sh script, as follows
> # #! /usr/bin/sh
> # echo "Hello, World!"
> # now save it
> # then make executable with
> # chmod +x hw.sh
> # come back to R
> system("/home/roc/projects/demo/hw.sh")
Hello, World!
>