$ 530: wc rcpp tidy
44 336 5820 rcpp
23 176 2999 tidy
67 512 8819 total
$ 531:
of course. Let me know if you want the secret sauce to quickly run this.
Just kiding:
Auxiliary files
html.top
Auxiliary files
html.top
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<table>
html.bot
</table>
</body>
</html>
Bash script (unparameterized)
curl https://cran.r-project.org/web/packages/available_packages_by_name.html > packages.html
grep packages.Rcpp packages.html > rcpp
grep packages.tidy packages.html > tidy
cat html.top > results.html
cat rcpp >> results.html
cat tidy >> results.html
cat html.bot >> results.html
sed -i .bak 's/.......web.packages/"https:\/\/cran.r-project.org\/web\/packages/g' results.html
Example script output