This commit is contained in:
Marc Beninca 2024-11-18 12:32:57 +01:00
parent aae50d9bef
commit 0cce49e919
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,11 +1,13 @@
bfdf() {
bfdf() { sh_btrfs_filesystem_d_f "${@}"; }
sh_btrfs_filesystem_d_f() {
btrfs \
filesystem \
df \
"${@}"
}
bfdu() {
bfdu() { sh_btrfs_filesystem_d_u "${@}"; }
sh_btrfs_filesystem_d_u() {
btrfs \
filesystem \
du \
@ -13,42 +15,48 @@ bfdu() {
"${@}"
}
bfu() {
bfu() { sh_btrfs_filesystem_usage "${@}"; }
sh_btrfs_filesystem_usage() {
btrfs \
filesystem \
usage \
"${@}"
}
bpg() {
bpg() { sh_btrfs_property_get "${@}"; }
sh_btrfs_property_get() {
btrfs \
property \
get \
"${@}"
}
bsc() {
bsc() { sh_btrfs_subvolume_create "${@}"; }
sh_btrfs_subvolume_create() {
btrfs \
subvolume \
create \
"${@}"
}
bsd() {
bsd() { sh_btrfs_subvolume_delete "${@}"; }
sh_btrfs_subvolume_delete() {
btrfs \
subvolume \
delete \
"${@}"
}
bss() {
bss() { sh_btrfs_subvolume_snapshot "${@}"; }
sh_btrfs_subvolume_snapshot() {
btrfs \
subvolume \
snapshot \
"${@}"
}
bssr() {
bssr() { sh_btrfs_subvolume_snapshot_r "${@}"; }
sh_btrfs_subvolume_snapshot_r() {
btrfs \
subvolume \
snapshot -r \