rwx/bash/alias/lsblk.sh

13 lines
215 B
Bash
Raw Normal View History

2023-05-14 13:45:02 +02:00
# list block devices
alias lb="\
lsblk \
2024-01-21 11:47:18 +01:00
--output \"NAME,SIZE,TYPE,FSTYPE,LABEL,MOUNTPOINTS\" \
2023-05-14 13:45:02 +02:00
--noempty \
"
2023-05-13 01:59:08 +02:00
2023-05-14 13:45:02 +02:00
# list block devices (old)
alias lbo="\
lsblk \
2024-01-21 11:47:18 +01:00
--output \"NAME,SIZE,TYPE,FSTYPE,LABEL,MOUNTPOINT\" \
2023-05-14 13:45:02 +02:00
"