# rls ## Description This command allows most of the features of ls but with a rainbow color output. ## Features - Rainbow color output. - `rls -al` shows the same information as `ls -Al`. - It can also count the number of files in a directory. ## Installation Just download the .deb file and run `dpkg --install` to install it. ### From Source ``` git clone https://github.com/Sophuwu300/rls.git cd rls make sudo make install ``` ## Usage `rls [OPTIONS] [PATHS]`
**Options:**
`-h` `--help` display this help message
`-c` `--nocolor` disable color output
`-l` `--list` more info on files
`-a` `--all` list dot files
`-n` `--number` count files ### Examples List all files in the current directory with more information. ``` rls -al ``` List all files in /home and /etc. ``` rls -a /home /etc ```