Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jacobbubu/copysync

Copy file or directory in synchronous way
https://github.com/jacobbubu/copysync

Last synced: 14 days ago
JSON representation

Copy file or directory in synchronous way

Awesome Lists containing this project

README

        

# Install #

`npm install copysync`

# Usage #

```
copysync = require 'copysync'

src = process.argv[2]
dest = process.argv[3]

copysync src, dest
```