Skip to content

Instantly share code, notes, and snippets.

@honzajavorek
Created August 18, 2012 08:24
Show Gist options
  • Save honzajavorek/3385283 to your computer and use it in GitHub Desktop.
Save honzajavorek/3385283 to your computer and use it in GitHub Desktop.
One-liners to install dependencies from txt file similar to pythonic requirements.txt
#!/bin/bash
cat ubuntu_requirements.txt | xargs apt-get -y install
cat ruby_requirements.txt | xargs gem install
pip install -r python_requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment