From cd50ae60e47abbbbbd00b2ad735cc1b4b8091091 Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Fri, 4 Nov 2022 19:51:08 -0700 Subject: [PATCH] Update README --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ae13ade..ec5e301 100644 --- a/README.md +++ b/README.md @@ -4,21 +4,23 @@ _sortplz_ is a simple file sorter. It takes targeted files, and moves them to su ![Alt text](example_output.png "Example of output") -**Usage:** sortplz -f:_fromdir_ -t:_todir_ -e:_ext_ +**Usage:** sortplz -f:_fromdir_ -t:_todir_ -e:_ext_ -n:_name_ -**Other flags:** _--help (-h)_, _--version (-v)_, _--silent (-s)"_ +**Other flags:** _--help (-h)_, _--version (-v)_, _--silent (-s)_, _--recurse (-s)_ -**Note:** You can specify more than one "-e" option. +## Notes + +- You can specify more than one "-e" and/or "-n" options. +- "-e" options check against the file extensions; "-n" options check against the whole filename. +- "-n" options take precedence over "-e" options: it's presumed specific files are more important to sort. ## Changelog - 2022.10.04.2 -> Initial Release -- 2022.10.04.3 -> Add colored output & partially-successful "silent" flag. -- 2022.11.04.1 -> +- 2022.10.04.3 -> Added colored output & partially-successful "silent" flag. +- 2022.11.04.1 -> Added recursion; added name-string sorting; "silent" issues may be fixed? ## TODO - Sort by size, instead of extension -- Sort by name, instead of extension - It'd be nice to have the files/extensions specified without a option. -- "Silent" isn't completely silent, and only works after the other commands.