SQLite dot commands: run system shell commands
Shell dot command If you are in middle of a sqlite shell session, and you don’t want to quit the shell to run arbitrary shell command, you can simply use the .shell <command> to execute any shell commands right from within the sqlite shell. How handy is this! .shell echo “hello, world!” That is a…