From 61231d32249f304db109326a5a644010c07235bf Mon Sep 17 00:00:00 2001 From: vlfldr <91982627+vlfldr@users.noreply.github.com> Date: Tue, 21 Jun 2022 08:00:38 -0400 Subject: [PATCH] tmsu: add page (#8132) --- pages/common/tmsu.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/tmsu.md diff --git a/pages/common/tmsu.md b/pages/common/tmsu.md new file mode 100644 index 000000000..00a40a16c --- /dev/null +++ b/pages/common/tmsu.md @@ -0,0 +1,28 @@ +# tmsu + +> Simple command-line tool for tagging files. +> More information: . + +- Tag a specific file with multiple tags: + +`tmsu tag {{path/to/file.mp3}} {{music}} {{big-jazz}} {{mp3}}` + +- Tag multiple files: + +`tmsu tag --tags "{{music mp3}}" {{*.mp3}}` + +- List tags of specified file(s): + +`tmsu tags {{*.mp3}}` + +- List files with specified tag(s): + +`tmsu files {{big-jazz}} {{music}}` + +- List files with tags matching boolean expression: + +`tmsu files "{{(year >= 1990 and year <= 2000)}} and {{grunge}}"` + +- Mount tmsu virtual filesystem to an existing directory: + +`tmsu mount {{path/to/directory}}`