↧
Answer by arekolek for Enable autocomplete in an sqlite3 interactive shell
You can use rlwrap if you don't want to compile sqlite3. Just run sudo apt install rlwrap, and then set up an alias for sqlite3 in your .bashrc:alias sqlite="rlwrap -a -N -c -i sqlite3"The -c option...
View ArticleAnswer by ЯрославРахматуллин for Enable autocomplete in an sqlite3...
Compile the program with readline supoort. Readline is a common library that handles user input in interpreters such as bash and python. Fetch the source, the dependencies and configure with:...
View ArticleEnable autocomplete in an sqlite3 interactive shell
I am using sqlite3 on a machine where I can use tab completion (ie .read abc will autocomplete to .read abcdefghij.db. I would like to know how to enable this on my personal machine.Both machines are...
View Article