Tente isso:
sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH '\"perl install\"';"
Eu posso fazer isso na ferramenta sqlite:
sqlite> select caption from notes_fts where notes_fts MATCH '"perl install"';
mas não é possível no shell do Linux, ou seja, isso falha:
user@host:~$ sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH '"it perl install "';"
Eu tentei diferentes versões de citar "
, mas não funcionou.
Tente isso:
sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH '\"perl install\"';"
Tente isso:
sqlite3 sqldb "select caption from notes_fts where notes_fts MATCH 'perl install';"
Tags command-line bash sqlite quoting