copy-to-range

Copy files to a range of directories.

Usage no npm install needed!

<script type="module">
  import copyToRange from 'https://cdn.skypack.dev/copy-to-range';
</script>

README

copy-to-range

Build Status Current npm package version

Copy a file to a range of directories.

Installation

npm install --save copy-to-range

Usage

const copyToRange = require('copy-to-range');

copyToRange('file.txt', '1-4');
$ tree
.
├── file.txt
├── 1
│   └── file.txt
├── 2
│   └── file.txt
├── 3
│   └── file.txt
├── 4
│   └── file.txt
│ ...

With options:

const copyToRange = require('copy-to-range');

copyToRange('file.txt', '11-13,20', {
    destination: 'out',
    append: 'a',
    prepend: 'p'
});
$ tree
.
├── file.txt
├── out
│   ├── p11a
│   │   └── file.txt
│   ├── p12a
│   │   └── file.txt
│   ├── p13a
│   │   └── file.txt
│   └── p20a
│       └── file.txt
│ ...

Options

Property Description Default
destination Destination directory ""
append String to append to directory names ""
prepend String to prepend to directory names ""

Related

Authors

  • Austin Gordon - Development - GitHub

License

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