From ada00a889392075422bc810aa5f2ec03767f0f9b Mon Sep 17 00:00:00 2001 From: Eric Hanchrow Date: Mon, 14 Oct 2024 19:01:25 -0700 Subject: [PATCH] Don't depracte backticks; just suggest `shell` as an alternative. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 481e7cd377..0f2f1ab9cd 100644 --- a/README.md +++ b/README.md @@ -2034,8 +2034,6 @@ Use `just --groups --unsorted` to print groups in their justfile order. ### Command Evaluation Using Backticks -Backticks are an older feature that have largely been obsoleted by the `shell` function (see [External Commands](#external-commands).); we recommend that you use `shell` in new justfiles. - Backticks can be used to store the result of commands: ```just @@ -2061,6 +2059,9 @@ See the [Strings](#strings) section for details on unindenting. Backticks may not start with `#!`. This syntax is reserved for a future upgrade. +More flexible and powerful command invocations can be acheived with the `shell` function (see [External Commands](#external-commands)) . + + ### Conditional Expressions `if`/`else` expressions evaluate different branches depending on if two