Created
August 18, 2012 08:24
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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