From 7cb8f7421434c71cac8ac9692479f88d61c163db Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 21 Jan 2024 11:47:18 +0100 Subject: [PATCH] lsblk/label --- bash/alias/lsblk.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/alias/lsblk.sh b/bash/alias/lsblk.sh index 7ae874a..4d63193 100644 --- a/bash/alias/lsblk.sh +++ b/bash/alias/lsblk.sh @@ -1,12 +1,12 @@ # list block devices alias lb="\ lsblk \ ---output \"NAME,SIZE,TYPE,FSTYPE,MOUNTPOINTS\" \ +--output \"NAME,SIZE,TYPE,FSTYPE,LABEL,MOUNTPOINTS\" \ --noempty \ " # list block devices (old) alias lbo="\ lsblk \ ---output \"NAME,SIZE,TYPE,FSTYPE,MOUNTPOINT\" \ +--output \"NAME,SIZE,TYPE,FSTYPE,LABEL,MOUNTPOINT\" \ "