@@ -1365,7 +1365,7 @@ static struct my_option my_long_options[] =
1365
1365
{" help" , ' I' , " Synonym for -?" , 0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 ,
1366
1366
0 , 0 , 0 , 0 , 0 },
1367
1367
#ifdef __NETWARE__
1368
- {" autoclose" , OPT_AUTO_CLOSE, " Auto close the screen on exit for Netware." ,
1368
+ {" autoclose" , OPT_AUTO_CLOSE, " Automatically close the screen on exit for Netware." ,
1369
1369
0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1370
1370
#endif
1371
1371
{" auto-rehash" , OPT_AUTO_REHASH,
@@ -1379,26 +1379,26 @@ static struct my_option my_long_options[] =
1379
1379
" Automatically switch to vertical output mode if the result is wider than the terminal width." ,
1380
1380
(uchar**) &auto_vertical_output, (uchar**) &auto_vertical_output, 0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1381
1381
{" batch" , ' B' ,
1382
- " Don't use history file. Disable interactive behavior. (Enables --silent)" , 0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1382
+ " Don't use history file. Disable interactive behavior. (Enables --silent. )" , 0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1383
1383
{" character-sets-dir" , OPT_CHARSETS_DIR,
1384
- " Directory where character sets are ." , (uchar**) &charsets_dir,
1384
+ " Directory for character set files ." , (uchar**) &charsets_dir,
1385
1385
(uchar**) &charsets_dir, 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1386
1386
{" column-type-info" , OPT_COLUMN_TYPES, " Display column type information." ,
1387
1387
(uchar**) &column_types_flag, (uchar**) &column_types_flag,
1388
1388
0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1389
1389
{" comments" , ' c' , " Preserve comments. Send comments to the server."
1390
- " The default is --skip-comments (discard comments), enable with --comments" ,
1390
+ " The default is --skip-comments (discard comments), enable with --comments. " ,
1391
1391
(uchar**) &preserve_comments, (uchar**) &preserve_comments,
1392
1392
0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1393
1393
{" compress" , ' C' , " Use compression in server/client protocol." ,
1394
1394
(uchar**) &opt_compress, (uchar**) &opt_compress, 0 , GET_BOOL, NO_ARG, 0 , 0 , 0 ,
1395
1395
0 , 0 , 0 },
1396
1396
1397
1397
#ifdef DBUG_OFF
1398
- {" debug" , ' #' , " This is a non-debug version. Catch this and exit" ,
1398
+ {" debug" , ' #' , " This is a non-debug version. Catch this and exit. " ,
1399
1399
0 ,0 , 0 , GET_DISABLED, OPT_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1400
1400
#else
1401
- {" debug" , ' #' , " Output debug log" , (uchar**) &default_dbug_option,
1401
+ {" debug" , ' #' , " Output debug log. " , (uchar**) &default_dbug_option,
1402
1402
(uchar**) &default_dbug_option, 0 , GET_STR, OPT_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1403
1403
#endif
1404
1404
{" debug-check" , OPT_DEBUG_CHECK, " Check memory and open file usage at exit." ,
@@ -1413,12 +1413,12 @@ static struct my_option my_long_options[] =
1413
1413
(uchar**) &default_charset, 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1414
1414
{" delimiter" , OPT_DELIMITER, " Delimiter to be used." , (uchar**) &delimiter_str,
1415
1415
(uchar**) &delimiter_str, 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1416
- {" execute" , ' e' , " Execute command and quit. (Disables --force and history file)" , 0 ,
1416
+ {" execute" , ' e' , " Execute command and quit. (Disables --force and history file. )" , 0 ,
1417
1417
0 , 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1418
1418
{" vertical" , ' E' , " Print the output of a query (rows) vertically." ,
1419
1419
(uchar**) &vertical, (uchar**) &vertical, 0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 ,
1420
1420
0 },
1421
- {" force" , ' f' , " Continue even if we get an sql error." ,
1421
+ {" force" , ' f' , " Continue even if we get an SQL error." ,
1422
1422
(uchar**) &ignore_errors, (uchar**) &ignore_errors, 0 , GET_BOOL, NO_ARG, 0 , 0 ,
1423
1423
0 , 0 , 0 , 0 },
1424
1424
{" named-commands" , ' G' ,
@@ -1441,7 +1441,7 @@ static struct my_option my_long_options[] =
1441
1441
(uchar**) ¤t_host, 0 , GET_STR_ALLOC, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1442
1442
{" html" , ' H' , " Produce HTML output." , (uchar**) &opt_html, (uchar**) &opt_html,
1443
1443
0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1444
- {" xml" , ' X' , " Produce XML output" , (uchar**) &opt_xml, (uchar**) &opt_xml, 0 ,
1444
+ {" xml" , ' X' , " Produce XML output. " , (uchar**) &opt_xml, (uchar**) &opt_xml, 0 ,
1445
1445
GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1446
1446
{" line-numbers" , OPT_LINE_NUMBERS, " Write line numbers for errors." ,
1447
1447
(uchar**) &line_numbers, (uchar**) &line_numbers, 0 , GET_BOOL,
@@ -1456,15 +1456,15 @@ static struct my_option my_long_options[] =
1456
1456
{" skip-column-names" , ' N' ,
1457
1457
" Don't write column names in results." ,
1458
1458
0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1459
- {" sigint-ignore" , OPT_SIGINT_IGNORE, " Ignore SIGINT (CTRL-C)" ,
1459
+ {" sigint-ignore" , OPT_SIGINT_IGNORE, " Ignore SIGINT (CTRL-C). " ,
1460
1460
(uchar**) &opt_sigint_ignore, (uchar**) &opt_sigint_ignore, 0 , GET_BOOL,
1461
1461
NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1462
1462
{" one-database" , ' o' ,
1463
1463
" Only update the default database. This is useful for skipping updates to other database in the update log." ,
1464
1464
0 , 0 , 0 , GET_NO_ARG, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1465
1465
#ifdef USE_POPEN
1466
1466
{" pager" , OPT_PAGER,
1467
- " Pager to use to display results. If you don't supply an option the default pager is taken from your ENV variable PAGER. Valid pagers are less, more, cat [> filename], etc. See interactive help (\\ h) also. This option does not work in batch mode. Disable with --disable-pager. This option is disabled by default." ,
1467
+ " Pager to use to display results. If you don't supply an option, the default pager is taken from your ENV variable PAGER. Valid pagers are less, more, cat [> filename], etc. See interactive help (\\ h) also. This option does not work in batch mode. Disable with --disable-pager. This option is disabled by default." ,
1468
1468
0 , 0 , 0 , GET_STR, OPT_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1469
1469
#endif
1470
1470
{" password" , ' p' ,
@@ -1485,7 +1485,7 @@ static struct my_option my_long_options[] =
1485
1485
{" prompt" , OPT_PROMPT, " Set the mysql prompt to this value." ,
1486
1486
(uchar**) ¤t_prompt, (uchar**) ¤t_prompt, 0 , GET_STR_ALLOC,
1487
1487
REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1488
- {" protocol" , OPT_MYSQL_PROTOCOL, " The protocol of connection (tcp,socket,pipe,memory)." ,
1488
+ {" protocol" , OPT_MYSQL_PROTOCOL, " The protocol to use for connection (tcp, socket, pipe, memory)." ,
1489
1489
0 , 0 , 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1490
1490
{" quick" , ' q' ,
1491
1491
" Don't cache result, print it row by row. This may slow down the server if the output is suspended. Doesn't use history file." ,
@@ -1502,7 +1502,7 @@ static struct my_option my_long_options[] =
1502
1502
" Base name of shared memory." , (uchar**) &shared_memory_base_name, (uchar**) &shared_memory_base_name,
1503
1503
0 , GET_STR_ALLOC, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1504
1504
#endif
1505
- {" socket" , ' S' , " Socket file to use for connection." ,
1505
+ {" socket" , ' S' , " The socket file to use for connection." ,
1506
1506
(uchar**) &opt_mysql_unix_port, (uchar**) &opt_mysql_unix_port, 0 , GET_STR_ALLOC,
1507
1507
REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1508
1508
#include " sslopt-longopts.h"
@@ -1533,26 +1533,26 @@ static struct my_option my_long_options[] =
1533
1533
(uchar**) &opt_connect_timeout, 0 , GET_ULONG, REQUIRED_ARG, 0 , 0 , 3600 *12 , 0 ,
1534
1534
0 , 0 },
1535
1535
{" max_allowed_packet" , OPT_MAX_ALLOWED_PACKET,
1536
- " Max packet length to send to, or receive from server" ,
1536
+ " The maximum packet length to send to or receive from server. " ,
1537
1537
(uchar**) &opt_max_allowed_packet, (uchar**) &opt_max_allowed_packet, 0 ,
1538
1538
GET_ULONG, REQUIRED_ARG, 16 *1024L *1024L , 4096 ,
1539
1539
(longlong) 2 *1024L *1024L *1024L , MALLOC_OVERHEAD, 1024 , 0 },
1540
1540
{" net_buffer_length" , OPT_NET_BUFFER_LENGTH,
1541
- " Buffer for TCP/IP and socket communication" ,
1541
+ " The buffer size for TCP/IP and socket communication. " ,
1542
1542
(uchar**) &opt_net_buffer_length, (uchar**) &opt_net_buffer_length, 0 , GET_ULONG,
1543
1543
REQUIRED_ARG, 16384 , 1024 , 512 *1024 *1024L , MALLOC_OVERHEAD, 1024 , 0 },
1544
1544
{" select_limit" , OPT_SELECT_LIMIT,
1545
- " Automatic limit for SELECT when using --safe-updates" ,
1545
+ " Automatic limit for SELECT when using --safe-updates. " ,
1546
1546
(uchar**) &select_limit,
1547
1547
(uchar**) &select_limit, 0 , GET_ULONG, REQUIRED_ARG, 1000L , 1 , ULONG_MAX,
1548
1548
0 , 1 , 0 },
1549
1549
{" max_join_size" , OPT_MAX_JOIN_SIZE,
1550
- " Automatic limit for rows in a join when using --safe-updates" ,
1550
+ " Automatic limit for rows in a join when using --safe-updates. " ,
1551
1551
(uchar**) &max_join_size,
1552
1552
(uchar**) &max_join_size, 0 , GET_ULONG, REQUIRED_ARG, 1000000L , 1 , ULONG_MAX,
1553
1553
0 , 1 , 0 },
1554
1554
{" secure-auth" , OPT_SECURE_AUTH, " Refuse client connecting to server if it"
1555
- " uses old (pre-4.1.1) protocol" , (uchar**) &opt_secure_auth,
1555
+ " uses old (pre-4.1.1) protocol. " , (uchar**) &opt_secure_auth,
1556
1556
(uchar**) &opt_secure_auth, 0 , GET_BOOL, NO_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
1557
1557
{" server-arg" , OPT_SERVER_ARG, " Send embedded server this as a parameter." ,
1558
1558
0 , 0 , 0 , GET_STR, REQUIRED_ARG, 0 , 0 , 0 , 0 , 0 , 0 },
0 commit comments