aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2025-02-19 13:02:23 +0000
committerstephan <stephan@noemail.net>2025-02-19 13:02:23 +0000
commit2e132a4c04563e9fc0c3369e82564c77d8c53f94 (patch)
tree3311f6610412b233561abcd09107e1a940c3827c /src
parenteb3a069fc82e53a40ea63076d66ab113a3b2b0c6 (diff)
downloadsqlite-2e132a4c04563e9fc0c3369e82564c77d8c53f94.tar.gz
sqlite-2e132a4c04563e9fc0c3369e82564c77d8c53f94.zip
Slight tweak to the CLI shell help output to help convey that it can accept multiple SQL arguments, as suggested in [forum:20e617feee|forum post 20e617feee].
FossilOrigin-Name: 82fc67070f9aff0065c07cbeed40f4321e03617bdc3e517adc58a2d96e6e3e49
Diffstat (limited to 'src')
-rw-r--r--src/shell.c.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in
index fcc9316b0..2337504a6 100644
--- a/src/shell.c.in
+++ b/src/shell.c.in
@@ -12633,7 +12633,7 @@ static const char zOptions[] =
#endif
;
static void usage(int showDetail){
- sqlite3_fprintf(stderr,"Usage: %s [OPTIONS] [FILENAME [SQL]]\n"
+ sqlite3_fprintf(stderr,"Usage: %s [OPTIONS] [FILENAME [SQL...]]\n"
"FILENAME is the name of an SQLite database. A new database is created\n"
"if the file does not previously exist. Defaults to :memory:.\n", Argv0);
if( showDetail ){