bsl
This commit is contained in:
parent
b380b2c0b0
commit
6ab26f5187
2 changed files with 9 additions and 8 deletions
|
@ -1,8 +0,0 @@
|
||||||
bsl() { sh_btrfs_subvolume_list "${@}"; }
|
|
||||||
sh_btrfs_subvolume_list() {
|
|
||||||
if [ -n "${1}" ]; then
|
|
||||||
btrfs subvolume list "${1}" |
|
|
||||||
cut --delimiter " " --fields 9 |
|
|
||||||
sort
|
|
||||||
fi
|
|
||||||
}
|
|
|
@ -47,6 +47,15 @@ sh_btrfs_subvolume_delete() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bsl() { sh_btrfs_subvolume_list "${@}"; }
|
||||||
|
sh_btrfs_subvolume_list() {
|
||||||
|
if [ -n "${1}" ]; then
|
||||||
|
btrfs subvolume list "${1}" |
|
||||||
|
cut --delimiter " " --fields 9 |
|
||||||
|
sort
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
bss() { sh_btrfs_subvolume_snapshot "${@}"; }
|
bss() { sh_btrfs_subvolume_snapshot "${@}"; }
|
||||||
sh_btrfs_subvolume_snapshot() {
|
sh_btrfs_subvolume_snapshot() {
|
||||||
btrfs \
|
btrfs \
|
||||||
|
|
Loading…
Reference in a new issue