Display a line of text/string on standard output or a file.
echo [Options] [Strings]
| #!/usr/bin/env node | |
| const net = require('net'); | |
| process.on('uncaughtException', function(error) { | |
| console.error(error); | |
| }); | |
| const localPortHttp = process.argv[2]; | |
| const localPortHttps = process.argv[3]; |