copy-to-range-cli

1.0.4 • Public • Published

copy-to-range-cli

Current npm package version

Copy a file to a range of directories.

Installation

npm install --global copy-to-range-cli

Usage

$ copy-to-range --help

  Copy files to a range of directories.

  Usage
    $ copy-to-range <file> <int>-<int>
  Options
       --destination, -d  Destination for dirs
       --prepend, -p  Prepend to destination dir names
       --append, -a  Append to destination dir names
  Example
    $ copy-to-range file.txt 1-5,7,9-10
$ tree
.
├── file.txt
├── 1
├── 2
├── 3
├── 5
│ ...

$ copy-to-range file.txt 1-3,5

# tree
.
├── file.txt
├── 1
│   └── file.txt
├── 2
│   └── file.txt
├── 3
│   └── file.txt
├── 5
│   └── file.txt
│ ...

With options:

$ tree
.
├── file.txt
├── out
│   ├── p1a
│   ├── p2a
│   ├── p3a
│   └── p5a
│ ...

$ copy-to-range file.txt 1-3,5 --destination out --prepend p --append a

$ tree
.
├── file.txt
├── out
│   ├── p1a
│   │   └── file.txt
│   ├── p2a
│   │   └── file.txt
│   ├── p3a
│   │   └── file.txt
│   └── p5a
│       └── file.txt
│ ...

Command Line/Shell Alias

Windows

Follow the instructions on this Stack Overflow answer to set up an alias on Windows.

UNIX

alias mdr=make-dir-range

Related

Authors

  • Austin Gordon - Development - GitHub

License

This project is licensed under the MIT License - see the LICENSE file for details

Package Sidebar

Install

npm i copy-to-range-cli

Weekly Downloads

1

Version

1.0.4

License

MIT

Unpacked Size

5.33 kB

Total Files

4

Last publish

Collaborators

  • austinleegordon