tvsort

:tv: Small cli app that sorts TV shows into subfolders


License
MIT
Install
npm install tvsort@4.0.0-x

Documentation

TVSort

Small nodejs cli app that sorts TV shows into subfolders

Build Status

Installation

npm install tvsort -g

Usage

$ tvsort --help

Small CLI app that sorts TV shows into subfolders

Usage
$ tvsort <options>

Options
-i, --input       Input directory to scan                 [default: "."]
-o, --output      Output directory                        [default: "."]
-d, --dry-run     Dry run (nothing will be moved)         [default: false]
-r, --recursive   Depth to scan recursively               [default: 0]
-f, --filters     Comma separated list of glob patterns   [default: none]
                  Note: globs are case-insensitve

Examples
Sort all files from current directory into subdirectories
  $ tvsort

Sort files from "inputDir" to subdirectories inside "outputDir"
  $ tvsort -i inputDir -o outputDir

Only sort files starting with "breaking" or "the"
  $ tvsort -f 'breaking*, the*'

Sort files from three subdirectories deep
  $ tvsort -r 3