From ee8c5579f347f4c56657097964a869d16f317ed9 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 16 Jul 2021 18:08:55 +0200 Subject: [PATCH] docs: Add some links (and remove a stray sentence) --- doc_src/tutorial.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc_src/tutorial.rst b/doc_src/tutorial.rst index 06ae2970a..0906a8cfc 100644 --- a/doc_src/tutorial.rst +++ b/doc_src/tutorial.rst @@ -43,6 +43,10 @@ If you have a strong understanding of other shells, and want to know what fish d Or, if you want a quick overview over the differences to other shells like Bash, see :ref:`Fish For Bash Users `. +For the full, detailed description of how to use fish interactively, see :ref:`Interactive Use `. + +For a comprehensive description of fish's scripting language, see :ref:`The Fish Language`. + Running Commands ---------------- @@ -262,7 +266,7 @@ Unlike other shells, variables are not further split after substitution:: Mister Noodle -In bash, this would have created two directories "Mister" and "Noodle". In fish, it created only one: the variable had the value "Mister Noodle", so that is the argument that was passed to ``mkdir``, spaces and all. Other shells use the term "arrays", rather than lists. +In bash, this would have created two directories "Mister" and "Noodle". In fish, it created only one: the variable had the value "Mister Noodle", so that is the argument that was passed to ``mkdir``, spaces and all. You can erase (or "delete") a variable with ``-e`` or ``--erase``