Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jacobbubu/copysync
- Owner: jacobbubu
- Created: 2012-11-16T02:53:56.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-16T07:23:33.000Z (about 12 years ago)
- Last Synced: 2024-04-28T10:21:28.992Z (9 months ago)
- Language: CoffeeScript
- Size: 117 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```