ls implements limited functionality of UNIX command ls. For full documentation of ls, see man ls on an UNIX machine, or an online manual.
gcc and make on a supporting system.
Clone and run make in the cloned directory. Other commands (or rules) for make can be found in the Makefile. For explanation of make concepts, make documentation is available here (one page HTML).
Invocation: ./ft_ls [OPTION]... [FILE]...
ft_ls accepts only short style options, i.e. single character options. Allowed options are:
-l- long listing format-R- recursive listing-a- include files starting with . ("hidden" files)-r- reverse order while sorting-t- sort by time, newest first
These options correspond directly with the UNIX ls version.
This is a learning project and not intended for use.