diff --git a/pages/common/cadaver.md b/pages/common/cadaver.md index 62da170f7e2002..a729846019e9b4 100644 --- a/pages/common/cadaver.md +++ b/pages/common/cadaver.md @@ -7,9 +7,9 @@ `cadaver {{http://dav.example.com/}}` -- Connect to a server using a specific port and open the collection `/foo/bar/`: +- Connect to a server using a specific port and open a collection: -`cadaver {{http://dav.example.com:8022/foo/bar/}}` +`cadaver {{http://dav.example.com:8022/path/to/collection/}}` - Connect to a server using SSL: diff --git a/pages/common/mlr.md b/pages/common/mlr.md index d2202f3da82780..15f09f13946a06 100644 --- a/pages/common/mlr.md +++ b/pages/common/mlr.md @@ -9,7 +9,7 @@ - Receive JSON data and pretty print the output: -`echo '{"hello":"world"}' | mlr --ijson --opprint cat` +`{{echo '{"key":"value"}'}} | mlr --ijson --opprint cat` - Sort alphabetically on a field: @@ -25,7 +25,7 @@ - Receive JSON and format the output as vertical JSON: -`echo '{"hello":"world", "foo":"bar"}' | mlr --ijson --ojson --jvstack cat` +`{{echo '{"key1":"value1", "key2":"value2"}'}} | mlr --ijson --ojson --jvstack cat` - Filter lines of a compressed CSV file treating numbers as [S]trings: diff --git a/pages/common/npm-adduser.md b/pages/common/npm-adduser.md index 0c2ca68a989248..b323c35daeb6d6 100644 --- a/pages/common/npm-adduser.md +++ b/pages/common/npm-adduser.md @@ -9,12 +9,12 @@ - Log in to a private registry with a specific scope: -`npm login --scope {{@mycorp}} --registry {{https://registry.mycorp.com}}` +`npm login --scope {{@organization}} --registry {{https://registry.example.com}}` - Log out from a specific scope and remove the auth token: -`npm logout --scope {{@mycorp}}` +`npm logout --scope {{@organization}}` - Create a scoped package during initialization: -`npm init --scope {{@foo}} {{[-y|--yes]}}` +`npm init --scope {{@organization}} {{[-y|--yes]}}` diff --git a/pages/common/robo.md b/pages/common/robo.md index dc12ed76c4ebb2..05efa795eb84cc 100644 --- a/pages/common/robo.md +++ b/pages/common/robo.md @@ -9,8 +9,8 @@ - Run a specific command: -`robo {{foo}}` +`robo {{command}}` - Simulate running a specific command: -`robo --simulate {{foo}}` +`robo --simulate {{command}}` diff --git a/pages/common/wget2.md b/pages/common/wget2.md index 4baab81216c88b..fce41e9036ac19 100644 --- a/pages/common/wget2.md +++ b/pages/common/wget2.md @@ -7,11 +7,11 @@ - Download the contents of a URL to a file using multiple threads (default behavior differs from `wget`): -`wget2 {{https://example.com/foo}}` +`wget2 {{https://example.com/resource}}` - Limit the number of threads used for downloading (default is 5 threads): -`wget2 --max-threads {{10}} {{https://example.com/foo}}` +`wget2 --max-threads {{10}} {{https://example.com/resource}}` - Download a single web page and all its resources (scripts, stylesheets, images, etc.):