Added more detailed readme file

Author Mitja Felicijan <m@mitjafelicijan.com> 2023-05-20 19:42:48 +0000
Committer Mitja Felicijan <m@mitjafelicijan.com> 2023-05-20 19:42:48 +0000
Commit 36dd2ba3e45f618d978c169729ee0a59c85cbef0 (patch)
-rw-r--r-- README.md 15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
1
# Plan9 tree util
1
# Plan9 tree util
2
  
2
  
  
3
`tree` is written with Plan9 Operating System in mind so it may not work
  
4
with other systems.
  
5
  
  
6
It is using [Plan9 C compiler](https://plan9.io/sys/doc/compiler.html).
  
7
  
  
8
## Description
  
9
  
  
10
Tree is a recursive directory listing program that displays files in a 
  
11
hierarchical structure with indentation based on their depth. The program 
  
12
outputs the listing to the terminal.
  
13
  
  
14
If no arguments are provided, tree lists all the files in the current 
  
15
directory. When directory arguments are given, tree lists all the files and 
  
16
directories found within each specified directory.
  
17