Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ SCP (secure file copy) wrapper for node.js

![scp](http://i.imgur.com/RrUKV.gif)

##install
## install

npm install scp

##usage
## usage

````javascript
var scp = require('scp');
Expand All @@ -27,9 +27,9 @@ scp.send(options, function (err) {
});
````

##methods
## methods

###scp.send(options, cb)
### scp.send(options, cb)

Send a file to a remote host (in your `~/.ssh/config`)

Expand All @@ -47,7 +47,7 @@ scp.send({
});
````

###scp.get(options, cb)
### scp.get(options, cb)

Transfer a file from a remote host (in your `~/.ssh/config`) to the current computer.

Expand Down