]> git.donarmstrong.com Git - cran2deb.git/blob - trunk/exec/get_base_pkgs
fb6230decfab8434b8a998a1199981fb73cd50f8
[cran2deb.git] / trunk / exec / get_base_pkgs
1 #!/usr/bin/env r
2 instPkgs <- installed.packages(lib.loc="/usr/lib/R/library")
3 instPkgs <- instPkgs[ instPkgs[,"Priority"] == 'base', ]
4 for (pkg in rownames(instPkgs())) {
5         message(pkg)
6 }