1
0
Fork 0
This commit is contained in:
VirtuBox 2019-01-31 17:55:51 +01:00
parent f3ee98e54c
commit a52f242a11
1 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,4 @@
#!/bin/bash
# FUNCTIONS
@ -17,7 +18,7 @@ transfer_vtbox_net() {
}
compress_pigz() {
tar -I pigz -cvf $1.tar.gz "$1"
tar -I pigz -cvf "$1.tar.gz" "$1"
}
decompress_pigz() {
@ -49,7 +50,7 @@ decrypt_gpg() {
}
LIST_BY_SIZE() {
du -sh * | sort -h
du -sh ./* | sort -h
}
EE_DOCKER_SETUP() {
@ -221,7 +222,8 @@ fi
alias ll='ls -alhF'
alias la='ls -A'
alias l='ls -CF'
alias lh="stat -c '%A %a %n'"
alias lh="stat -c '%A %a %n' ./*"
alias ld='du -sh ./* | sort -h'
alias maintenance=MAINTENANCE_APT
alias ee-maintenance=MAINTENANCE_APT
alias ee-encrypt=encrypt_gpg