Elektrine lite

← Feed

@linguistory@code4lib.social

Post #1556689

2026-03-10 14:41 UTC

@Thorsted Ooh, thank you! I think I can combine the fmp2sqlite tool with some sql processing to get what I need. Much obliged!

Replies (1)

  • @linguistory@code4lib.social 2026-03-10 15:24

    Hah! I ended up running the following to get a list of files SQL and rows they contained: ``` for i in *.sql; do echo $i $(sqlite3 $i 'select count(1) from "'$(sqlite3 $i '.tables')\") >> recordcounts.tsv done ```

    Open ##1556690