about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-10-14 09:54:54 +0000
committerEric Wong <e@80x24.org>2021-10-14 13:03:01 +0000
commitef6d335cb515996c2dd7cc0d9a188f9b041db425 (patch)
treeb500b319fc08bb50afaad2f851a18b988c8c49b3
parenteb0e4dd09d540eb29c71fe1cc92161a13a0b608a (diff)
downloadpublic-inbox-ef6d335cb515996c2dd7cc0d9a188f9b041db425.tar.gz
`-d' seems like a non-brainer for --dir with inspect.

I find myself using `--only' a bit, too, and `-O' seems like
a reasonable shortcut for it.
-rw-r--r--Documentation/lei-q.pod2
-rw-r--r--lib/PublicInbox/LEI.pm9
2 files changed, 7 insertions, 4 deletions
diff --git a/Documentation/lei-q.pod b/Documentation/lei-q.pod
index e1e3666d..574c12eb 100644
--- a/Documentation/lei-q.pod
+++ b/Documentation/lei-q.pod
@@ -164,6 +164,8 @@ multiple times.
 
 =item --only=LOCATION
 
+=item -O LOCATION
+
 Use only the specified external for search.  This option may be given
 multiple times, in which case the search uses only the specified set.
 
diff --git a/lib/PublicInbox/LEI.pm b/lib/PublicInbox/LEI.pm
index 635cd0c5..f107c250 100644
--- a/lib/PublicInbox/LEI.pm
+++ b/lib/PublicInbox/LEI.pm
@@ -148,7 +148,7 @@ sub index_opt {
 
 my @c_opt = qw(c=s@ C=s@ quiet|q);
 my @net_opt = (qw(no-torsocks torsocks=s), PublicInbox::LeiQuery::curl_opt());
-my @lxs_opt = qw(remote! local! external! include|I=s@ exclude=s@ only=s@
+my @lxs_opt = qw(remote! local! external! include|I=s@ exclude=s@ only|O=s@
         import-remote!);
 
 # we don't support -C as an alias for --find-copies since it's already
@@ -284,7 +284,7 @@ our %CMD = ( # sorted in order of importance/use:
         }, qw(config-file|system|global|file|f=s), # for conflict detection
          qw(edit|e c=s@ C=s@), pass_through('git config') ],
 'inspect' => [ 'ITEMS...|--stdin', 'inspect lei/store and/or local external',
-        qw(stdin| pretty ascii dir=s), @c_opt ],
+        qw(stdin| pretty ascii dir|d=s), @c_opt ],
 
 'init' => [ '[DIRNAME]', sub {
         "initialize storage, default: ".store_path($_[0]);
@@ -337,7 +337,8 @@ my %OPTDESC = (
 'path-a|a=s' => 'pre-image pathname associated with OID',
 'path-b|b=s' => 'post-image pathname associated with OID',
 'git-dir=s@' => 'additional git repository to scan',
-'dir=s        inspect' => 'specify a inboxdir, extindex topdir or Xapian shard',
+'dir|d=s        inspect' =>
+        'specify a inboxdir, extindex topdir or Xapian shard',
 'proxy=s' => [ 'PROTO://HOST[:PORT]', # shared with curl(1)
         "proxy for (e.g. `socks5h://0:9050')" ],
 'torsocks=s' => ['VAL|auto|no|yes',
@@ -395,7 +396,7 @@ my %OPTDESC = (
                 'exclude specified external(s) from search' ],
 'include|I=s@        q' => [ 'LOCATION',
                 'include specified external(s) in search' ],
-'only=s@        q' => [ 'LOCATION',
+'only|O=s@        q' => [ 'LOCATION',
                 'only use specified external(s) for search' ],
 'jobs=s        q' => [ '[SEARCH_JOBS][,WRITER_JOBS]',
                 'control number of search and writer jobs' ],