mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 10:43:47 +08:00
docs: fix literals in quotes section
This commit is contained in:
parent
a83f580174
commit
cea941a061
|
@ -181,19 +181,20 @@ Example::
|
|||
|
||||
rm "cumbersome filename.txt"
|
||||
|
||||
Will remove the file 'cumbersome filename.txt', while
|
||||
removes the file ``cumbersome filename.txt``, while
|
||||
|
||||
::
|
||||
|
||||
rm cumbersome filename.txt
|
||||
|
||||
|
||||
would remove the two files 'cumbersome' and 'filename.txt'.
|
||||
removes two files, ``cumbersome`` and ``filename.txt``.
|
||||
|
||||
::
|
||||
|
||||
grep 'enabled)$' foo.txt
|
||||
|
||||
will search for lines ending in "enabled)" in foo.txt (the `$` is special to `grep`).
|
||||
searches for lines ending in ``enabled)`` in ``foo.txt`` (the ``$`` is special to ``grep``: it matches the end of the line).
|
||||
|
||||
|
||||
.. _escapes:
|
||||
|
|
Loading…
Reference in New Issue
Block a user