Last active
October 30, 2018 22:58
-
-
Save erichnascimento/372fe31f824d3a86c86357415d5505db to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# Install Nodejs | |
curl https://nodejs.org/dist/v8.12.0/node-v8.12.0-linux-x64.tar.xz -O \ | |
&& tar xf node-v8.12.0-linux-x64.tar.xz \ | |
&& cp -R node-v8.12.0-linux-x64/* /usr/local \ | |
&& rm -rf node-v8.12.0-linux-x64 \ | |
&& rm -f node-v8.12.0-linux-x64.tar.xz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment