Disk : Nix fix.

This commit is contained in:
Dmitry Voronin 2024-01-29 02:22:53 +03:00
parent 42a8858294
commit a3d32583c0

View file

@ -1,11 +1,11 @@
# Show only physical drives info. # Show only physical drives info.
function df() { function df() {
df --si | sed -e '1p' -e '/^\/dev\//!d' /usr/bin/env df --si | sed -e '1p' -e '/^\/dev\//!d'
} }
# Show combined size in SI. # Show combined size in SI.
# Current dir by default. # Current dir by default.
# Usage: du [DIRS] # Usage: du [DIRS]
function du() { function du() {
du -sh --si /usr/bin/env du -sh --si
} }