mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
docs: add documentation for missing -a
Signed-off-by: Quentin Young <qlyoung@qlyoung.net>
This commit is contained in:
parent
b013abae6b
commit
d82ef10532
1 changed files with 9 additions and 1 deletions
|
|
@ -11,7 +11,8 @@ Usage
|
|||
|
||||
Add the ``missing`` plugin to your configuration (see :ref:`using-plugins`).
|
||||
By default, the ``beet missing`` command lists the names of tracks that your
|
||||
library is missing from each album.
|
||||
library is missing from each album. It can also list the names of albums that
|
||||
your library is missing from each artist.
|
||||
You can customize the output format, count
|
||||
the number of missing tracks per album, or total up the number of missing
|
||||
tracks over your whole library, using command-line switches::
|
||||
|
|
@ -20,9 +21,12 @@ tracks over your whole library, using command-line switches::
|
|||
print with custom FORMAT
|
||||
-c, --count count missing tracks per album
|
||||
-t, --total count total of missing tracks
|
||||
-a, --album show missing albums for artist instead of tracks
|
||||
|
||||
…or by editing corresponding options.
|
||||
|
||||
Note that ``-c`` is ignored when used with ``-a``.
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
|
|
@ -60,6 +64,10 @@ List all missing tracks in your collection::
|
|||
|
||||
beet missing
|
||||
|
||||
List all missing albums in your collection::
|
||||
|
||||
beet missing -a
|
||||
|
||||
List all missing tracks from 2008::
|
||||
|
||||
beet missing year:2008
|
||||
|
|
|
|||
Loading…
Reference in a new issue