Skip to content

Commit

Permalink
Fix typos in README (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkg2a authored Apr 18, 2024
1 parent ab617a6 commit 345da0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ docker run --rm -i -v <volume-name>:/volume -v $(pwd):/mnt instrumentisto/rsync-
Transferring file from remote host with `rsync` to local host without `rsync`:
```bash
docker run --rm -i -v <local-dest-path>:/mnt instrumentisto/rsync-ssh \
rsync -avz <remote host>:<remote soruce path> /mnt/
rsync -avz <remote-host>:<remote-src-path> /mnt/
```

Transferring file from remote host without `rsync` to local host with `rsync`:
```bash
rsync -avz --rsync-path="docker run --rm -i -v <remote-src-path>:/mnt instrumentisto/rsync-ssh rsync" \
<remote host>:/mnt/ <local-dest-path>
<remote-host>:/mnt/ <local-dest-path>
```

Transfer file from remote host without `rsync` to local host without `rsync`:
Expand Down

0 comments on commit 345da0e

Please sign in to comment.