sh/bash/alias/lsblk.sh

13 lines
215 B
Bash
Raw Normal View History

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