SQLite .tables命令 - 禁用列输出格式

时间:2012-09-11 10:22:32

标签: sqlite

当我执行sqlite database.db .tables命令时,它以下列格式返回表的列表:

table1   table2     table3                
table4   table4     table6

我想将其切换为:

table1
table2
table3

如何更改?

1 个答案:

答案 0 :(得分:1)

SQLite shell工具不允许自定义.tables输出格式。

尝试通过fmt -w1管道输出。