I would like to create a script in R that pings a given website. I haven\'t found any information about this specific for R.
To start with, all I need is the informa
To get the status code
library(httr) b <- GET("http://www.google.com") b$status_code [1] 200