An open API service indexing awesome lists of open source software.

https://github.com/thundernet8/hierarchical-copy

Copy files hierarchically with wildcards supports
https://github.com/thundernet8/hierarchical-copy

copyfiles glob

Last synced: 5 days ago
JSON representation

Copy files hierarchically with wildcards supports

Awesome Lists containing this project

README

          

## hierarchical-copy

Copy files hierarchically with wildcards supports.

## Install

npm
```
npm install hierarchical-copy -g
```

yarn
```
yarn global add hierarchical-copy
```

## Usage
```
rcp 'src/js/**/*.js' ./dist
```
Notes: you should wrap a glob with quote, otherwise node will auto glob in unix envs and result in unexpect actions.

with verbose option will log file paths
```
rcp -v ./examples/*.txt .dist
```