From 0722e83ada6618ac562ed58838244da7d137a26a Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Wed, 11 Sep 2024 00:16:06 +0000 Subject: [PATCH] Update cheatsheets --- tldr/! | 2 +- tldr/[ | 2 +- tldr/[[ | 2 +- tldr/^ | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tldr/! b/tldr/! index aacbe3a5..4b09370a 100644 --- a/tldr/! +++ b/tldr/! @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # Exclamation mark > Bash builtin to substitute with a command found in history. -> More information: . +> More information: . - Substitute with the previous command and run it with `sudo`: diff --git a/tldr/[ b/tldr/[ index 6a9b02ae..d4a9b195 100644 --- a/tldr/[ +++ b/tldr/[ @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Check file types and compare values. > Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. -> More information: . +> More information: . - Test if a given variable is equal/not equal to the specified string: diff --git a/tldr/[[ b/tldr/[[ index 4abe8c0e..605affe3 100644 --- a/tldr/[[ +++ b/tldr/[[ @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Check file types and compare values. > Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. -> More information: . +> More information: . - Test if a given variable is equal/not equal to the specified string: diff --git a/tldr/^ b/tldr/^ index 0b205e93..008f9092 100644 --- a/tldr/^ +++ b/tldr/^ @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Bash builtin to quick substitute a string in the previous command and run the result. > Equivalent to `!!:s^string1^string2`. -> More information: . +> More information: . - Run the previous command replacing `string1` with `string2`: