- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
| #!/bin/bash | |
| # | |
| # Copyright(c) 2018 Asit Dhal. | |
| # Distributed under the MIT License (http://opensource.org/licenses/MIT) | |
| # | |
| LIGHT_BLUE='\033[1;34m' | |
| RED='\033[0;31m' | |
| NC='\033[0m' # No Color | |
| INTERACTIVE="" |
| // Replace this list with the result of to-run-on-org-page.js | |
| // And remember to do an "npm install" | |
| var users = ["voxpelli"]; | |
| var https = require('https'); | |
| var fs = require('fs'); | |
| var exec = require('child_process').exec; | |
| var tmp = require('temporary-directory') | |
| var cuid = require('cuid'); | |
| var chalk = require('chalk'); |