Skip to content

Commit 89e1089

Browse files
Fix: ReadME
1 parent 7544644 commit 89e1089

File tree

1 file changed

+44
-6
lines changed

1 file changed

+44
-6
lines changed

README.md

Lines changed: 44 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,54 @@
1+
<!-- markdownlint-configure-file {
2+
"MD013": {
3+
"code_blocks": false,
4+
"tables": false
5+
},
6+
"MD033": false,
7+
"MD041": false
8+
} -->
9+
10+
<div align="center" markdown="1">
11+
112
# Bridgeftp
213

14+
[![Tests](https://github.com/abhijeetmohanan/bridgeftp/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/abhijeetmohanan/bridgeftp/actions/workflows/test.yml/badge.svg?query=branch%3Amain)
15+
16+
<br/>
17+
18+
</div>
19+
20+
## About
21+
322
A tool that can copy files from Remote to Remote FTP Servers
423

5-
## Supports
24+
* It streams data from source to destination [ no need to save files locally just to transfer ]
25+
26+
* Supported Protocols
27+
* ftp
28+
* sftp
629

7-
- ftp
8-
- sftp
30+
## Installation
31+
32+
**1: Binary Installation**
33+
34+
download one of [releases](https://github.com/abhijeetmohanan/bridgeftp/releases)
35+
36+
## Getting Started
37+
38+
<b> FTP </b>
39+
40+
```bash
41+
bridgeftp --src ftp://username:password@server:port/filepath \
42+
--dest ftp://username@password@server:port/filepath \
43+
--bs 512
44+
```
945

10-
## Usage
46+
<b> SFTP </b>
1147

1248
```bash
13-
bridgeftp --src ftp://username:password@server:port/filepath --dest ftp://username@password@server:port/filepath
49+
bridgeftp --src sftp://username:password@server:port/filepath \
50+
--dest sftp://username@password@server:port/filepath \
51+
--bs 512
1452
```
1553

16-
**change the protocol to switch between sftp and ftp
54+
##

0 commit comments

Comments
 (0)