From efbccb61fb309d94075e7814fc6d3c0162417882 Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Fri, 6 Feb 2026 00:25:38 +0000 Subject: [PATCH] Update cheatsheets --- tldr/dotnet-restore | 2 +- tldr/fortune | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tldr/dotnet-restore b/tldr/dotnet-restore index 47a76371..0d1ea86e 100644 --- a/tldr/dotnet-restore +++ b/tldr/dotnet-restore @@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git - Restore dependencies without caching the HTTP requests: -`dotnet restore --no-cache` +`dotnet restore --no-http-cache` - Force all dependencies to be resolved even if the last restore was successful: diff --git a/tldr/fortune b/tldr/fortune index fb7fe770..a4a77bb6 100644 --- a/tldr/fortune +++ b/tldr/fortune @@ -31,3 +31,7 @@ source: https://github.com/tldr-pages/tldr.git - Print a quotation from one of the database files listed by `fortune -f`: `fortune {{path/to/file}}` + +- Pipe a fortune through another command (like `cowsay` or `lolcat`): + +`fortune | cowsay | lolcat`