diff --git a/source/C/command_line.rst b/source/C/command_line.rst index cb57a78f..aa8d0b89 100644 --- a/source/C/command_line.rst +++ b/source/C/command_line.rst @@ -65,3 +65,11 @@ If you want a command to run if the first completes run .. code:: command 1 && command 2 + +One of the most powerful uses of the command line is called a pipe which allows you to take the output of one command and pipe it to a second to this for example + +.. code:: + + lspci |less + +