https://github.com/chyroc/fs
file/folder sync over tcp(client/server)
https://github.com/chyroc/fs
Last synced: 10 months ago
JSON representation
file/folder sync over tcp(client/server)
- Host: GitHub
- URL: https://github.com/chyroc/fs
- Owner: chyroc
- License: apache-2.0
- Created: 2018-12-10T05:07:14.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-11T05:42:23.000Z (about 7 years ago)
- Last Synced: 2025-01-29T08:22:52.693Z (11 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fs
file/folder sync over tcp(client/server)
# install
## from go source
client
```bash
go get github.com/Chyroc/fs/cmd/fs-cli
```
server
```bash
go get github.com/Chyroc/fs/cmd/fs-svr
```
## from release binary
```bash
curl -L https://github.com/Chyroc/fs/releases/download/v0.1.0/fs_0.1.0_Linux_x86_64.tar.gz > fs.tar.gz && tar zxvf fs.tar.gz
```
# usage
server
```bash
fs-svr -port 1234 -mode pull
```
client
```bash
fs-cli -host -port -dir ./dir-to-sync
```