Sebastian Kurscheid, PhD Bioinformatics, Research Data, HPC

Retrieving host/machine name in R

A simple way to retrieve the local machine name in R:

R> Sys.info()["nodename"]
          nodename
"your machine name"

Found at walkingrandomly