Category Archives: Windows Bash Script

[Windows Bash Script] convert csv to html table

source: How to find and replace a string in text file using batch file just replace “,” with html table tag. @echo off setlocal enabledelayedexpansion set txtfile=%~1 set newfile=Output.html if exist “%newfile%” del /f /q “%newfile%” echo ^<table border=’1’^> >> … Continue reading

Posted in Windows Bash Script | 1 Comment