1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/dysk.md
lloyd-dada 72ba622482
dysk: add page (#13405)
---------

Co-authored-by: spageektti <git@spageektti.cc>
2024-08-08 15:23:22 +02:00

24 lines
409 B
Markdown

# dysk
> Display filesystem information in a table.
> More information: <https://dystroy.org/dysk>.
- Get a standard overview of your usual disks:
`dysk`
- Sort by free size:
`dysk --sort free`
- Include only HDD disks:
`dysk --filter 'disk = HDD'`
- Exclude SSD disks:
`dysk --filter 'disk <> SSD'`
- Display disks with high utilization or low free space:
`dysk --filter 'use > 65% | free < 50G'`