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"
|
||||
}
|
||||
|
||||
# common arguments
|
||||
lbc() {
|
||||
# base arguments
|
||||
lbb() {
|
||||
lsblk \
|
||||
--noempty \
|
||||
"${@}"
|
||||
|
@ -22,6 +22,6 @@ lbo() {
|
|||
for argument in "${@}"; do
|
||||
arguments="${arguments},${argument}"
|
||||
done
|
||||
lbc \
|
||||
lbb \
|
||||
--output "${arguments}"
|
||||
}
|
||||
|
|
|
@ -1,12 +1,19 @@
|
|||
# synchronize
|
||||
alias rs="\
|
||||
rsync \
|
||||
--archive \
|
||||
--partial \
|
||||
--progress \
|
||||
--verbose \
|
||||
--no-inc-recursive \
|
||||
"
|
||||
rs() {
|
||||
rsb \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# base arguments
|
||||
rsb() {
|
||||
rsync \
|
||||
--archive \
|
||||
--no-inc-recursive \
|
||||
--partial \
|
||||
--progress \
|
||||
--verbose \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# synchronize and delete after
|
||||
alias rsda="\
|
||||
|
|
Loading…
Reference in a new issue