bases
This commit is contained in:
parent
a31401bd77
commit
ecb4005b0e
2 changed files with 18 additions and 11 deletions
|
@ -8,8 +8,8 @@ lb() {
|
||||||
"MOUNTPOINTS"
|
"MOUNTPOINTS"
|
||||||
}
|
}
|
||||||
|
|
||||||
# common arguments
|
# base arguments
|
||||||
lbc() {
|
lbb() {
|
||||||
lsblk \
|
lsblk \
|
||||||
--noempty \
|
--noempty \
|
||||||
"${@}"
|
"${@}"
|
||||||
|
@ -22,6 +22,6 @@ lbo() {
|
||||||
for argument in "${@}"; do
|
for argument in "${@}"; do
|
||||||
arguments="${arguments},${argument}"
|
arguments="${arguments},${argument}"
|
||||||
done
|
done
|
||||||
lbc \
|
lbb \
|
||||||
--output "${arguments}"
|
--output "${arguments}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,19 @@
|
||||||
# synchronize
|
# synchronize
|
||||||
alias rs="\
|
rs() {
|
||||||
|
rsb \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# base arguments
|
||||||
|
rsb() {
|
||||||
rsync \
|
rsync \
|
||||||
--archive \
|
--archive \
|
||||||
|
--no-inc-recursive \
|
||||||
--partial \
|
--partial \
|
||||||
--progress \
|
--progress \
|
||||||
--verbose \
|
--verbose \
|
||||||
--no-inc-recursive \
|
"${@}"
|
||||||
"
|
}
|
||||||
|
|
||||||
# synchronize and delete after
|
# synchronize and delete after
|
||||||
alias rsda="\
|
alias rsda="\
|
||||||
|
|
Loading…
Reference in a new issue