Only works in the CLI. Which also has .import
sqlite> create table pwd(name, pass, uid, gid, gecos, home, shell); sqlite> .sep : sqlite> .import /etc/passwd pwd sqlite> .mode column sqlite> select * from pwd where uid = '0'; name pass uid gid gecos home shell ---- ---- --- --- ----- ----- --------- root x 0 0 root /root /bin/bash