How could I get the full host name of a linux server in R (i.e. hostname.example.com)?
I understand I can use Sys.info()["nodename"] to get the nodename (i.e. hostname) in R.
>Solution :
Are you allowed to use a system call? ie system("hostname -f", intern = TRUE) on Linux.