mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-26 12:52:59 +00:00
Update cheatsheets
This commit is contained in:
29
tldr/linux/dysk
Normal file
29
tldr/linux/dysk
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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'`
|
||||
Reference in New Issue
Block a user