Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I execute sqlite database.db .tables command, it returns list of tables in the following format:

table1   table2     table3                
table4   table4     table6

I would like to switch it to:

table1
table2
table3

How can I change it?

share|improve this question

1 Answer

up vote 1 down vote accepted

The SQLite shell tool does not allow customizing the .tables output format.

Try piping the output through fmt -w1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.