mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
docs: Remove &foo; escapes
I always hated these. [ci skip]
This commit is contained in:
parent
c4d0177d81
commit
a447878cd7
2 changed files with 3 additions and 3 deletions
|
@ -233,7 +233,7 @@ Here is a list of some useful commands:
|
|||
- ``open``, open files with the default application associated with each filetype
|
||||
- ``less``, list the contents of files
|
||||
|
||||
Commands and parameters are separated by the space character ' '. Every command ends with either a newline (i.e. by pressing the return key) or a semicolon '``;``'. More than one command can be written on the same line by separating them with semicolons.
|
||||
Commands and parameters are separated by the space character `' '`. Every command ends with either a newline (i.e. by pressing the return key) or a semicolon '``;``'. More than one command can be written on the same line by separating them with semicolons.
|
||||
|
||||
A switch is a very common special type of argument. Switches almost always start with one or more hyphens '``-``' and alter the way a command operates. For example, the '``ls``' command usually lists all the files and directories in the current working directory, but by using the '``-l``' switch, the behavior of '``ls``' is changed to not only display the filename, but also the size, permissions, owner and modification time of each file.
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ You can pipe between commands with the usual vertical bar::
|
|||
<outp> 1 2 12</outp>
|
||||
|
||||
|
||||
stdin and stdout can be redirected via the familiar < and >. stderr is redirected with a 2>.
|
||||
stdin and stdout can be redirected via the familiar `<` and `<`. stderr is redirected with a `2>`.
|
||||
|
||||
|
||||
|
||||
|
@ -408,7 +408,7 @@ To write them on the same line, use the semicolon (";"). That means the followin
|
|||
Combiners (And, Or, Not)
|
||||
------------------------
|
||||
|
||||
fish supports the familiar ``&&`` and ``||`` to combine commands, and ``!`` to negate them::
|
||||
fish supports the familiar ``&&`` and ``||`` to combine commands, and ``!`` to negate them::
|
||||
|
||||
>_ ./configure && make && sudo make install
|
||||
|
||||
|
|
Loading…
Reference in a new issue