master|
# Purpose
The motivation of this project is for me to learn Rust. After reading half of two different books, I wrote `ds`. The program is useful but primitive. My next goals are further exploring unit tests and command line arguments.
# Filesystem Full?
Linux users are familiar with the `df` and `du` commands, respectively disk free and disk usage. When a filesystem is full (or nearly so), `df` will confirm that available space is zero. The `du` command with options can be more helpful. For example,
```
du -sm * | sort -n
```
will list all files and directories. However, hidden files and directories are not included. Using
```