diff --git a/tldr/apropos b/tldr/apropos index 395c064b..cb976267 100644 --- a/tldr/apropos +++ b/tldr/apropos @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # apropos > Search the manual pages for names and descriptions. +> See also: `man`. > More information: . - Search for a keyword using a `regex`: diff --git a/tldr/feroxbuster b/tldr/feroxbuster index 8a748365..f24a156d 100644 --- a/tldr/feroxbuster +++ b/tldr/feroxbuster @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Simple, fast, recursive content discovery tool written in Rust. > Used to brute-force hidden paths on web servers and more. -> More information: . +> More information: . - Discover specific directories and files that match in the wordlist with extensions and 100 threads and a random user-agent: diff --git a/tldr/ibmcloud-update b/tldr/ibmcloud-update new file mode 100644 index 00000000..554ba337 --- /dev/null +++ b/tldr/ibmcloud-update @@ -0,0 +1,17 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ibmcloud update + +> Update the IBM Cloud CLI to the latest available version. +> More information: . + +- Update CLI to the most recent version: + +`ibmcloud update` + +- Force an update without confirmation prompts: + +`ibmcloud update -f` diff --git a/tldr/ibmcloud-version b/tldr/ibmcloud-version new file mode 100644 index 00000000..dd1a6dc5 --- /dev/null +++ b/tldr/ibmcloud-version @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ibmcloud version + +> Display the installed IBM Cloud CLI version. +> More information: . + +- Display version: + +`ibmcloud {{[v|version]}}` diff --git a/tldr/linux/edit b/tldr/linux/edit index 69c91a99..64563cdd 100644 --- a/tldr/linux/edit +++ b/tldr/linux/edit @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > An alias to a `run-mailcap`'s action edit. > Originally `run-mailcap` is used to process/edit mime-type/file. -> More information: . +> More information: . - Edit action can be used to view any file on default mailcap explorer: diff --git a/tldr/linux/gedit b/tldr/linux/gedit index 0b9dca34..05140a36 100644 --- a/tldr/linux/gedit +++ b/tldr/linux/gedit @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # gedit > Text editor of the GNOME Desktop project. -> More information: . +> More information: . - Open a text file: diff --git a/tldr/linux/whatis b/tldr/linux/whatis index 9d221ba1..19e18c1a 100644 --- a/tldr/linux/whatis +++ b/tldr/linux/whatis @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # whatis > Display one-line descriptions from manual pages. -> See also: `whereis`, `which`, `type`. +> See also: `man`, `whereis`. > More information: . - Display a description from a man page: diff --git a/tldr/man b/tldr/man index c75af992..0b20f7f9 100644 --- a/tldr/man +++ b/tldr/man @@ -6,6 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # man > Format and display manual pages. +> See also: `whatis`, `apropos`. > More information: . - Display the man page for a command: diff --git a/tldr/mpicc b/tldr/mpicc index 7bd3719c..15693230 100644 --- a/tldr/mpicc +++ b/tldr/mpicc @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # mpicc > Open MPI C wrapper compiler. -> More information: . +> More information: . - Compile a source code file into an object file: diff --git a/tldr/octave b/tldr/octave index 06747cf5..6170720c 100644 --- a/tldr/octave +++ b/tldr/octave @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # octave > A programming language for scientific computing. -> More information: . +> More information: . - Start an interactive session: diff --git a/tldr/readarray b/tldr/readarray index ffddd790..a954b2a3 100644 --- a/tldr/readarray +++ b/tldr/readarray @@ -16,7 +16,7 @@ source: https://github.com/tldr-pages/tldr.git `readarray < {{path/to/file.txt}} {{array_name}}` -- Remove trailing deliminators (newline by default): +- Remove [t]railing deliminators (newline by default): `readarray < {{path/to/file.txt}} -t {{array_name}}` @@ -24,11 +24,11 @@ source: https://github.com/tldr-pages/tldr.git `readarray < {{path/to/file.txt}} -n {{n}} {{array_name}}` -- Skip the first `n` lines: +- [s]kip the first `n` lines: `readarray < {{path/to/file.txt}} -s {{n}} {{array_name}}` -- Define a custom delimiter: +- Define a custom [d]elimiter: `readarray < {{path/to/file.txt}} -d {{delimiter}} {{array_name}}` diff --git a/tldr/type b/tldr/type index 5aebf248..bb58a8b2 100644 --- a/tldr/type +++ b/tldr/type @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Display the type of command the shell will execute. > Note: All examples are not POSIX compliant. -> See also: `whereis`, `which`, `whatis`. +> See also: `whereis`, `which`. > More information: . - Display the type of a command: diff --git a/tldr/which b/tldr/which index 3686a95c..464cd600 100644 --- a/tldr/which +++ b/tldr/which @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # which > Locate a program in the user's `$PATH`. -> See also: `whereis`, `whatis`, `type`. +> See also: `whereis`, `type`. > More information: . - Search the `$PATH` environment variable and display the location of any matching executables: