#directory #group #organize #filenames #tool #cli-tool #interactive

app group_files_into_dirs

Group files into directories based on keywords

5 releases

0.2.1 Aug 14, 2024
0.2.0 Aug 14, 2024
0.1.2 Aug 12, 2024
0.1.1 Aug 11, 2024
0.1.0 Aug 10, 2024

#252 in Command line utilities

Download history 64/week @ 2024-08-04 392/week @ 2024-08-11 15/week @ 2024-08-18

471 downloads per month

MIT license

39KB
955 lines

group_files_into_dir

a CLI tool to group files into directories based on their filenames.

group_files_into_dir

Installation

Download binary file from releases page and put it in a path directory.

or using cargo to Install

cargo install group_files_into_dir

or build from source.

git clone https://github.com/craftgear/group_files_into_dirs
cargo build --release

Usage

Interactive mode (default)

extract keywords from filenames. delimiters are ,_-, space and braces ()[]{} .

  • dir - directory to group files in.
group_files_into_dir <dir>

specify keywords by yourself

  • keywords - words to use for grouping files, comma separated.
  • dir - directory to group files in.
group_files_into_dir -k <keywords> <dir> 

use directory name as keyword

Once you've created directories with interactive mode or specific keywords mode, this mode would be your daily driver.

With -d option, you can group files into directories based on directory names.

Let's say you have inquiry directory and quote directory in docs directory. Now when you put inquiry_2021-01-01.txt and quote_2021-01-01.txt in docs directory, you can move them into inquiry and quote directories with this mode.

  • dir - directory to group files in.
group_files_into_dir -d <dir> 

Example

# invoke interactive mode (default)
# then ask you to select keywords.
group_files_into_dir ./
# group files in current directory based on keywords "hello" and "world"
# no keyword selection prompt will be shown.
group_files_into_dir -k "hello,world" ./
# now you can occasionally organize files with -d option.
group_files_into_dir -d ./

LICENSE

MIT License

Dependencies

~11–19MB
~244K SLoC