From 707a856b8a73471846446e960e4fa5a947c30dac Mon Sep 17 00:00:00 2001 From: Lyn Perrine Date: Fri, 2 Nov 2018 22:34:42 -0700 Subject: [PATCH] Add ls to basic commands in appendix C --- source/C/command_line.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/C/command_line.rst b/source/C/command_line.rst index 5f890ec1..ecf7ab3a 100644 --- a/source/C/command_line.rst +++ b/source/C/command_line.rst @@ -21,6 +21,12 @@ will make a much nicer output than df +To list files on the current file system one of the most important commands to know is ls. +.. code:: + + ls + +will show the files in your current directory and the man page lists more options such as viewing all files or long listing.