>From 8dca0972d5269d13a16e3600f8ab1d81da5b506c Mon Sep 17 00:00:00 2001 From: Tim Chase Date: Fri, 16 Oct 2020 08:50:06 -0500 Subject: [PATCH 2/3] Modify CLI argument docs for OUTER JOIN --- utils/recsel.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/utils/recsel.c b/utils/recsel.c index 4a62646..435074d 100644 --- a/utils/recsel.c +++ b/utils/recsel.c @@ -152,8 +152,10 @@ Select and print rec data.\n"), stdout); puts (""); recutl_print_help_record_selection (); - fputs (_("\ - -j, --join=FIELD perform an inner join using the specified field.\n"), + puts (""); + fputs (_(" -j, --join=FIELD, --inner-join=FIELD do an inner join using the specified field.\n"), + stdout); + fputs (_(" -J, --outer-join=FIELD do an inner join using the specified field.\n"), stdout); puts (""); @@ -267,7 +269,7 @@ recsel_parse_args (int argc, if (!rec_field_name_p (optarg)) { - recutl_fatal (_("please specify a correct field name to -j|--join.\n")); + recutl_fatal (_("please specify a correct field name to join.\n")); } recsel_join = xstrdup (optarg); -- 2.25.1