-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.js
More file actions
38 lines (35 loc) · 1.13 KB
/
help.js
File metadata and controls
38 lines (35 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// ----- nodejs helper variables -----
_cReset = '\x1b[0m';
_cBright = '\x1b[1m';
_cDim = '\x1b[2m';
_cUnderscore = '\x1b[4m';
_cBlink = '\x1b[5m';
_cReverse = '\x1b[7m';
_cHidden = '\x1b[8m';
_cFgBlack = '\x1b[30m';
_cFgRed = '\x1b[31m';
_cFgGreen = '\x1b[32m';
_cFgYellow = '\x1b[33m';
_cFgBlue = '\x1b[34m';
_cFgMagenta = '\x1b[35m';
_cFgCyan = '\x1b[36m';
_cFgWhite = '\x1b[37m';
_cFgGray = '\x1b[90m';
_cBgBlack = '\x1b[40m';
_cBgRed = '\x1b[41m';
_cBgGreen = '\x1b[42m';
_cBgYellow = '\x1b[43m';
_cBgBlue = '\x1b[44m';
_cBgMagenta = '\x1b[45m';
_cBgCyan = '\x1b[46m';
_cBgWhite = '\x1b[47m';
_cBgGray = '\x1b[100m';
console.clear();
console.log(`Commands:\n`);
console.log(` ${_cFgBlue}config${_cReset}\t(re-configure dates in config.json)\n`);
console.log(` ${_cFgGreen}start${_cReset}\t\t(execute all)`);
console.log(` ${_cFgGreen}gather${_cReset}\t(gather data and generate .results_history/*.json)`);
console.log(` ${_cFgGreen}combine${_cReset}\t(re-generate combined results)`);
console.log(` ${_cFgGreen}chart${_cReset}\t(re-generate csv files)\n`);
console.log(` ${_cFgYellow}help${_cReset}\t\t(display this menu)`);
console.log('');