A clone of ls util in python
-
We'll come up limited implementation
- ls.py without options
- alphabetic order - done
- do not show dot files - done
- use columns
- -l listing files
- alphabetic order - done
- do not show dot files - done
- show file stats, things like file permissions, owner, size, etc.
- -a all files including dot files - done
- -s size of each file (non-directory)
- -h which gives size in human format
- Files (white)
- Folder (blue)
- Archives (red)
- Executables (green)
- Pictures (pink)
- ls.py without options
-
Create a blank package directory
-
Test & Deploy