> From: zimoun <zimon.touto...@gmail.com> > Date: Wed, 5 Feb 2020 16:39:00 +0100 > Cc: Julien Lepiller <jul...@lepiller.eu>, guile-user@gnu.org > > > > Is 'ctags -L' a valid option? > > > Because I do not find the documentation about it. > > > > --help of Exuberant Ctags 5.9~svn20110310 say: > > > > -L <file> > > A list of source file names are read from the specified file. > > Héhé. This option is not in my version: > > ctags --version > ctags (GNU Emacs 26.3) > Copyright (C) 2019 Free Software Foundation, Inc. > This program is distributed under the terms in ETAGS.README
You can instead redirect the file from stdin: ctags - will read the list of files from stdin, one file name per line of input. See "ctags --help".