is here a way to import a file into table with ":" being the separator?
for example I have file test.txt with
value1:result1
value2:result2
want to use something like this on the CLI:
sqlite> .import test.txt table
and at the end I would have:
+--------------+
|value1|result1|
+------+-------+
|value2|result2|
+------+-------+