echo "1 2 3 4 5
a b c d e
a b c d e"

https://stackoverflow.com/questions/26065872/how-to-import-a-tsv-file-with-sqlite3

insert

create table x(id int, last varchar(255),first varchar(255));
insert into x values(1,"williams","austin");
select * from x where last="williams";
select last from x where last="williams";


https://unix.stackexchange.com/questions/471442/windows-explorer-natural-order-sort-order

https://apple.stackexchange.com/questions/381772/is-there-a-way-to-change-the-order-in-which-the-finder-alphabetizes/381775