Michael H. Prager wrote: > A minor inconvenience in updating an R installation is remembering which > packages were installed previously. Has anyone written a script to > inspect a previous installation, then get & install the same packages > into the new installation? x <- installed.packages()[,1] install.packages(x) Uwe Ligges