SQLite to HTML
Monday, November 27th, 2006Here’s a quick and dirty shell script to convert some data from SQLite to HTML format.
sqlite3 -html contacts.sqlite “SELECT name, number FROM contacts” | tidy -asxhtml > contacts.html
Tidy will fix errors and convert the table into XHTML format.
