Skip to content

Instantly share code, notes, and snippets.

@srvanderplas
Last active October 18, 2023 19:08
Show Gist options
  • Save srvanderplas/5004a64533cae7077619cb4349e6c265 to your computer and use it in GitHub Desktop.
Save srvanderplas/5004a64533cae7077619cb4349e6c265 to your computer and use it in GitHub Desktop.
Useful Short Notes
# Link all files in a directory to another directory
# Source: https://superuser.com/questions/633605/how-to-create-symbolic-links-to-all-files-class-of-files-in-a-directory
find .. -name \*.bar -exec ln -vs "{}" dest/ ';'
# Set R site library to be owned by staff: https://stackoverflow.com/a/44676272
sudo chown root:staff /usr/local/lib/R/site-library
sudo chmod 2775 /usr/local/lib/R/site-library
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment