From bdaa16064c0fe708a5367433d4c2bdd412da46bf Mon Sep 17 00:00:00 2001 From: Shubham Saboo <72225064+FD-Shubham@users.noreply.github.com> Date: Sat, 24 Jan 2026 10:59:41 -0500 Subject: [PATCH] Fix SSH command examples in cli-tools.md Updated SSH command examples for clarity and correctness. --- linux/cli-tools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linux/cli-tools.md b/linux/cli-tools.md index 0762000..8caaaf4 100644 --- a/linux/cli-tools.md +++ b/linux/cli-tools.md @@ -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`