Gamal Azim wrote: > Is it possible to remotely save an R session then > terminate R? Of course the destructive task after > 'then' is rather straightforward by itself.
Yes. Sending the process a SIGUSR1 signal: $ kill -USR1 pid will save the global environment in the file .RData, but you'll need to remember the current working directory of the process to find it. Good luck! Jeff -- http://biostat.mc.vanderbilt.edu/JeffreyHorner ______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
