I have a .sqliterc file with .mode column.
Now despite I run
sqlite3 -separator $'\t' .....
It is padded with spaces instead tabs:
sqlite3 -separator $'\t' ..... | cat -A
-- Loading resources from /home/xyz/.sqliterc
Ensembl_Gene_ID gene $
------------------ ----------$
ENSMUSG00000038503 Mesdc2 $
ENSMUSG00000038503 Mesdc2 $
ENSMUSG00000038503 Mesdc2 $
ENSMUSG00000038503 Mesdc2 $
How can override some of the options in .sqlitrc. If it is possible I would rather don't switch off .sqliterc but overwrite some options.