diff --git a/tldr/git-credential-store b/tldr/git-credential-store index 92586409..53c33045 100644 --- a/tldr/git-credential-store +++ b/tldr/git-credential-store @@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git --- # git credential-store -> `git` helper to store passwords on disk. +> Git helper to store passwords on disk. > More information: . - Store Git credentials in a specific file: diff --git a/tldr/http b/tldr/http index 2a6b6ea7..27cbfe0e 100644 --- a/tldr/http +++ b/tldr/http @@ -5,14 +5,14 @@ source: https://github.com/tldr-pages/tldr.git --- # http -> HTTPie: an HTTP client designed for testing, debugging, and generally interacting with APIs & HTTP servers. +> HTTPie: an HTTP client designed for testing, debugging, and generally interacting with APIs and HTTP servers. > More information: . -- Make a simple GET request (shows response header and content): +- Make a simple GET request (shows response headers and content): -`http {{https://example.org}}` +`http {{https://example.com}}` -- Print specific output content (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata): +- Print specific parts of the content (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata): `http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}` diff --git a/tldr/linux/ifstat b/tldr/linux/ifstat index fcaf9af5..1c2f3187 100644 --- a/tldr/linux/ifstat +++ b/tldr/linux/ifstat @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - View error rate: -`ifstat {-e|--errors}}` +`ifstat {{-e|--errors}}` diff --git a/tldr/linux/qrcp b/tldr/linux/qrcp index 554ccff9..cb380881 100644 --- a/tldr/linux/qrcp +++ b/tldr/linux/qrcp @@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git - Use a specific network [i]nterface: -`qrcp {{send|receive}} --interface interface` +`qrcp {{send|receive}} --interface {{interface}}` - Keep the server alive: diff --git a/tldr/linux/rpicam-raw b/tldr/linux/rpicam-raw index 01850a9a..e6633bbc 100644 --- a/tldr/linux/rpicam-raw +++ b/tldr/linux/rpicam-raw @@ -10,7 +10,7 @@ source: https://github.com/tldr-pages/tldr.git - Capture a video for a specific amount of seconds: -`rpicam-raw -t {{2000}}} -o {{path/to/file.raw}}` +`rpicam-raw -t {{2000}} -o {{path/to/file.raw}}` - Change video dimensions and framerate: diff --git a/tldr/linux/termusic b/tldr/linux/termusic index f4b2cb69..4061880a 100644 --- a/tldr/linux/termusic +++ b/tldr/linux/termusic @@ -11,11 +11,11 @@ source: https://github.com/tldr-pages/tldr.git - Open termusic to a specific directory. (It can be set permanently in `~/.config/termusic/config.toml`): -`termusic {path/to/directory}` +`termusic {{path/to/directory}}` - Disable showing the album cover for a specific file: -`termusic -c {path/to/music_file}` +`termusic -c {{path/to/music_file}}` - Display help: diff --git a/tldr/pulumi-whoami b/tldr/pulumi-whoami new file mode 100644 index 00000000..87e9c397 --- /dev/null +++ b/tldr/pulumi-whoami @@ -0,0 +1,25 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pulumi whoami + +> Print information about the currently logged in user. +> More information: . + +- Print the username of the currently logged in user: + +`pulumi whoami` + +- Print detailed information about the currently logged in user: + +`pulumi whoami {{-v|--verbose}}` + +- Print detailed information about the currently logged in user as JSON: + +`pulumi whoami {{-j|--json}}` + +- Display help: + +`pulumi whoami {{-h|--help}}` diff --git a/tldr/scamper b/tldr/scamper index 7c3bf638..a6b56a0b 100644 --- a/tldr/scamper +++ b/tldr/scamper @@ -15,7 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Execute two actions (ping and traceroute) on two different targets: -`scamper -I "{{ping}} {{192.0.2.1}}" -I "{{trace}} {{192.0.2.2}}` +`scamper -I "{{ping}} {{192.0.2.1}}" -I "{{trace}} {{192.0.2.2}}"` - Ping several hosts with UDP, use a specific port number for the first ping and increase it for each subsequent ping: diff --git a/tldr/tcc b/tldr/tcc index 9abbf5fd..a81221e0 100644 --- a/tldr/tcc +++ b/tldr/tcc @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Interpret C source files with a shebang inside the file: -`#!/full/path/to/tcc -run` +`#!{{/full/path/to/tcc}} -run`