| code |
| HOST=user@10.0.0.1
sftp $HOST
!/bin/sh
|
|
|
| code |
| HOST=user@10.0.0.1
sudo sftp $HOST
!/bin/sh
|
|
|
| description |
code |
| Send local file to a SSH server. |
RHOST=user@10.0.0.1
sftp $RHOST
put file_to_send where_to_save
|
|
|
| description |
code |
| Fetch a remote file from a SSH server. |
RHOST=user@10.0.0.1
sftp $RHOST
get file_to_get where_to_save
|
|
|