diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/mnts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mnts b/bin/mnts index a7ad5c0..f8bfc4c 100755 --- a/bin/mnts +++ b/bin/mnts @@ -49,7 +49,7 @@ handle() { } lsblk -flJ | - jq -r '.. | select(.uuid?!="" and .name?) | select((.name | test("hibiki|nvme") | not) and .fstype?) | [ .name, .label, .mountpoints[0] // "" ] | @tsv' | + jq -r '.. | select(.uuid?!="" and .name?) | select((.name | test("hibiki|nvme|loop[0-9]+") | not) and .fstype?) | [ .name, .label, .mountpoints[0] // "" ] | @tsv' | awk -F'\t' '{printf "/dev/%-10s\t%-15s\t%s\n", $1, $2, $3;}' | menu --list=8 | handle |