sh/shell/btrfs.sh
2024-11-15 16:27:41 +01:00

7 lines
114 B
Bash

bsl() {
if [ -n "${1}" ]; then
btrfs subvolume list "${1}" |
cut --delimiter " " --fields 9 |
sort
fi
}