Video class about the project.
Run and combine the files:
npm start | tee ./result/log.logReading the first 100 lines of the file:
cat ./result/final.csv | head -100Reading the latest 100 lines of the file:
cat ./result/final.csv | tail -100Checking how many lines there is in a file:
cat ./result/final.csv | wc -lSum numbers with node:
node -p '2+3'