1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:42:09 +02:00

lsblk, df: add exclude examples (#4086)

This commit is contained in:
Ein Verne 2020-06-03 21:31:47 +08:00 committed by GitHub
parent 15b2209a3b
commit 346abde565
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -17,3 +17,7 @@
- Display statistics on the number of free inodes:
`df -i`
- Display file systems but exclude the specified type:
`df -x {{squashfs}} -x {{tmpfs}}`

View file

@ -25,3 +25,7 @@
- Output info about block-device topology:
`lsblk -t`
- Exclude the devices specified by the comma-separated list of major device numbers:
`lsblk -e {{1,7}}`