Clit tool to create a static HTML page which graph a CSV providing few arguments
./create-graph.sh TITLE file.csv "Legend" colDate colValue
Note: colDate is of type 2021-10-04 15:37:28+08:00
./create-graph.sh "XMR Rate" rate.csv "XMR Value" 0 3
./create-graph.sh "First graph" file.csv "first Value" 0 1
./create-graph.sh "Second graph" file.csv "second Value" 0 1
cat index.First_graph.html index.Second_graph.html > index.Several.html
window.onload = function() {
First_graph_onload();
Second_graph_onload();
}