1
0
Fork 0

add ee-ls

This commit is contained in:
virtubox 2018-11-05 10:17:26 +01:00
parent 9064669a9f
commit 761143e6c3
1 changed files with 5 additions and 0 deletions

View File

@ -31,6 +31,10 @@ decrypt_gpg() {
gpg --output ${1%.gpg} -d $1
}
LIST_BY_SIZE() {
du -sh * | sort -h
}
EE_DOCKER_SETUP() {
if [ ! -d $HOME/.ee ]; then
mkdir $HOME/.ee
@ -161,3 +165,4 @@ alias ee-encrypt=encrypt_gpg
alias ee-decrypt=decrypt_gpg
alias show-fpm-process=EE_SHOW_FPM
alias ee-docker-setup=EE_DOCKER_SETUP
alias ee-ls=LIST_BY_SIZE