Friday, July 24, 2020

How to convert LaTeX to HTML

https://tex.stackexchange.com/questions/39309/convert-latex-to-html#39391

Sunday, July 12, 2020

How to loop through each line in a file with BASH

cat some-list | while read line
do
  echo $line
done > result