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
6 changes: 3 additions & 3 deletions linux/cli-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -603,15 +603,15 @@ curl http://example.com/foo -o foo

# Connect to the remote server "foo.com" as the user "bar"

ssh
ssh bar@foo.com

# Connect to the remote server "foo.com" as the user "bar" and execute the command "baz"

ssh
ssh bar@foo.com "baz"

# Connect to the remote server "foo.com" as the user "bar" and execute the command "baz" in the background

ssh
ssh -f bar@foo.com "baz"
```

### `scp`
Expand Down