Created
August 8, 2016 17:09
-
-
Save jim-y/6ec7fdab3bc6988ea0cd4d35a91c8938 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
| #!/bin/sh | |
| npm install -g browserify | |
| echo "installed browserify" | |
| wget https://gist.githubusercontent.com/jerolimov/3756821/raw/d040f68f3adbbc0d137abd38cf3b945423858ddb/youtube.js | |
| echo "fetched youtube.js" | |
| browserify youtube.js -o out.js | |
| echo "the result is in out.js" | |
| #utana chmod +x yt.sh && ./yt.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment