$ sqlite3 contacts.sqlite "CREATE TABLE contacts (id INTEGER PRIMARY KEY, name, link);" $ sqlite3 contacts.sqlite "INSERT INTO contacts (name, link) VALUES ('Rheik', 'http://localhost:4567/contacts/Rheik');" $ sqlite3 contacts.sqlite "INSERT INTO contacts (name, link) VALUES ('Paul', 'http://localhost:4567/contacts/Paul');" $ sqlite3 contacts.sqlite "INSERT INTO contacts (name, link) VALUES ('Emil', 'http://localhost:4567/contacts/Emil');" $ sqlite3 contacts.sqlite "SELECT * FROM contacts;" 1|Rheik|http://localhost:4567/contacts/Rheik 2|Paul|http://localhost:4567/contacts/Paul 3|Emil|http://localhost:4567/contacts/Emil $