Skip to content

Commit 90e1ce2

Browse files
committed
cli: help: Fix examples
1 parent 4dc88aa commit 90e1ce2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/args.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,28 @@ use text_block_macros::text_block;
2626
after_help = text_block! {
2727
"EXAMPLES:"
2828
" Show disk usage chart of current working directory"
29-
" $ gdu"
29+
" $ pdu"
3030
""
3131
" Show disk usage chart of a single file or directory"
32-
" $ gdu path/to/file/or/directory"
32+
" $ pdu path/to/file/or/directory"
3333
""
3434
" Compare disk usages of multiple files and/or directories"
35-
" $ gdu file.txt dir/"
35+
" $ pdu file.txt dir/"
3636
""
3737
" Show chart in block sizes instead of apparent sizes"
38-
" $ gdu --quantity=blksize"
38+
" $ pdu --quantity=blksize"
3939
""
4040
" Show data in plain numbers instead of metric units"
41-
" $ gdu --bytes-format=plain"
41+
" $ pdu --bytes-format=plain"
4242
""
4343
" Show data in base 2¹⁰ units (binary) instead of base 10³ units (metric)"
44-
" $ gdu --bytes-format=binary"
44+
" $ pdu --bytes-format=binary"
4545
""
4646
" Show disk usage chart of all entries regardless of size"
47-
" $ gdu --min-ratio=0"
47+
" $ pdu --min-ratio=0"
4848
""
4949
" Only show disk usage chart of entries whose size is at least 5% of total"
50-
" $ gdu --min-ratio=0.05"
50+
" $ pdu --min-ratio=0.05"
5151
},
5252
)]
5353
pub struct Args {

0 commit comments

Comments
 (0)