Skip to content

Instantly share code, notes, and snippets.

@czlee
Created April 13, 2021 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czlee/5a867749c32a44b2827d8ea8eaae9848 to your computer and use it in GitHub Desktop.
Save czlee/5a867749c32a44b2827d8ea8eaae9848 to your computer and use it in GitHub Desktop.
Installing TeX Live packages en masse
tlmgr list --only-installed > installed_texlive_packages_2020.txt
# I used find-replace in Sublime Text to process the file
sudo while read p; do tlmgr install "$p"; done < installed_texlive_packages_2020.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment