bsl
This commit is contained in:
parent
763d199cde
commit
abb6ed3a26
1 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
function bsl {
|
||||
if [ "${1}" ] ; then
|
||||
btrfs subvolume list "${1}" \
|
||||
| cut -d ' ' -f 9 \
|
||||
| sort
|
||||
bsl() {
|
||||
if [ -n "${1}" ]; then
|
||||
btrfs subvolume list "${1}" |
|
||||
cut --delimiter " " --fields 9 |
|
||||
sort
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue