(This article was first published on Super Nerdy Cool » R, and kindly contributed to R-bloggers)
i usually run long simulations in R on a remote server. i’ve read an article on linux journal about emailing yourself after something happens…i forgot. since my jobs are long, and i usually have to run multiple jobs sequentially, it’d be nice to look at my results immediately when they’re gone. good thing *nix based systems have the mail (or mailx) command:
echo "" | mail -s "Job Done" [email protected]
found the stuff here.
in R, i execute:
system('echo "" | mail -s "Job Done" [email protected]')
of course, these are empty emails. u can use “<” or cat with pipe to get results emailed to you.
cool!
To leave a comment for the author, please follow the link and comment on his blog: Super Nerdy Cool » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).