rwx/shell/alias/lsblk.sh

28 lines
338 B
Bash
Raw Normal View History

2023-05-14 13:45:02 +02:00
# list block devices
2024-11-16 15:53:58 +01:00
lb() {
lbo \
"SIZE" \
"TYPE" \
"FSTYPE" \
"LABEL" \
"MOUNTPOINTS"
}
2023-05-13 01:59:08 +02:00
2024-11-16 15:53:58 +01:00
# common arguments
lbc() {
lsblk \
--noempty \
"${@}"
}
# output arguments
lbo() {
local argument
local arguments="NAME"
for argument in "${@}"; do
arguments="${arguments},${argument}"
done
lbc \
--output "${arguments}"
}