Compare commits

...

3 Commits
fix2 ... v0.6.0

Author SHA1 Message Date
andy.boot
5c45ed344f Update version 2021-06-23 09:25:04 +01:00
andy.boot
a8725711fa README: Add another tool to list of alternatives 2021-06-22 13:17:34 +01:00
andy.boot
811d3b065f README: Remove -x option
This behaviour was removed in previous commit
2021-06-22 13:17:26 +01:00
3 changed files with 5 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.18"
@@ -155,7 +157,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "du-dust"
version = "0.5.4"
version = "0.6.0"
dependencies = [
"ansi_term 0.12.1",
"assert_cmd",

View File

@@ -1,7 +1,7 @@
[package]
name = "du-dust"
description = "A more intuitive version of du"
version = "0.5.4"
version = "0.6.0"
authors = ["bootandy <bootandy@gmail.com>", "nebkor <code@ardent.nebcorp.com>"]
edition = "2018"

View File

@@ -49,7 +49,6 @@ Usage: dust -s <dir> (apparent-size - shows the length of the file as opposed t
Usage: dust -n 30 <dir> (shows 30 directories instead of the default)
Usage: dust -d 3 <dir> (shows 3 levels of subdirectories)
Usage: dust -r <dir> (reverse order of output, with root at the lowest)
Usage: dust -x <dir> (only show directories on the same filesystem)
Usage: dust -X ignore <dir> (ignore all files and directories with the name 'ignore')
Usage: dust -b <dir> (do not show percentages or draw ASCII bars)
```
@@ -61,6 +60,7 @@ Usage: dust -b <dir> (do not show percentages or draw ASCII bars)
* [dutree](https://github.com/nachoparker/dutree)
* [dua](https://github.com/Byron/dua-cli/)
* [pdu](https://github.com/KSXGitHub/parallel-disk-usage)
* [dirstat-rs](https://github.com/scullionw/dirstat-rs)
* du -d 1 -h | sort -h
Note: Apparent-size is calculated slightly differently in dust to gdu. In dust each hard link is counted as using file_length space. In gdu only the first entry is counted.