From 184cece622789467a503a18abb7753f0b4d9c484 Mon Sep 17 00:00:00 2001 From: fabh2o Date: Tue, 9 Feb 2021 20:49:44 +0100 Subject: [PATCH] fix space --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 86b47a8..301e9bd 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ The default options correspond to the following flags: * `--file-naming-scheme '$title'` * `--chapter-naming-scheme '$title-$(printf %0${#chaptercount}d $chapternum) $chapter'` +Additional notes: * If a command substitution is present in the passed string, (for example `$(printf %0${#chaptercount}d $chapternum)`, used to pad with zeros the chapter number), the commands are executed. So you can use `--dir-naming-scheme '$(date +%Y)/$artist'`, but using `--file-naming-scheme '$(rm -rf /)'` is a really bad idea. Be careful. * You can use basic text, like `--dir-naming-scheme 'Converted/$title'`