From 0ad23419b1fbb981b56dec0ead51a68b512375e9 Mon Sep 17 00:00:00 2001 From: Jack Lin Date: Sun, 8 Oct 2023 18:36:30 +0800 Subject: [PATCH] just: update collision pages (#10783) --- pages/common/just.1.md | 24 ++++++++++++++++++++++++ pages/common/just.md | 23 +++++------------------ pages/linux/{just-js.md => just.js.md} | 0 3 files changed, 29 insertions(+), 18 deletions(-) create mode 100644 pages/common/just.1.md rename pages/linux/{just-js.md => just.js.md} (100%) diff --git a/pages/common/just.1.md b/pages/common/just.1.md new file mode 100644 index 000000000..1a776107c --- /dev/null +++ b/pages/common/just.1.md @@ -0,0 +1,24 @@ +# just + +> Save and run project-specific commands. +> More information: . + +- Run a recipe specified in the justfile: + +`just {{recipe}}` + +- Initialize new justfile in project root: + +`just --init` + +- Edit justfile in the default editor: + +`just -e` + +- List available recipes in the justfile: + +`just -l` + +- Print justfile: + +`just --dump` diff --git a/pages/common/just.md b/pages/common/just.md index 1a776107c..0f6108768 100644 --- a/pages/common/just.md +++ b/pages/common/just.md @@ -1,24 +1,11 @@ # just -> Save and run project-specific commands. -> More information: . +> `just` can refer to multiple commands with the same name. -- Run a recipe specified in the justfile: +- View documentation for the command runner: -`just {{recipe}}` +`tldr just.1` -- Initialize new justfile in project root: +- View documentation for the V8 JavaScript runtime: -`just --init` - -- Edit justfile in the default editor: - -`just -e` - -- List available recipes in the justfile: - -`just -l` - -- Print justfile: - -`just --dump` +`tldr just.js` diff --git a/pages/linux/just-js.md b/pages/linux/just.js.md similarity index 100% rename from pages/linux/just-js.md rename to pages/linux/just.js.md