New backup 2024-04-17 14:30:03
This commit is contained in:
parent
c4bc5a230e
commit
af2db1d036
1 changed files with 4 additions and 1 deletions
|
@ -14,7 +14,10 @@ alias p="ps aux |grep "
|
||||||
#open file
|
#open file
|
||||||
alias o="open "
|
alias o="open "
|
||||||
#find large files
|
#find large files
|
||||||
alias find_largest_files="du -h -x -s -- * | sort -r -h | head -20"
|
#alias find_largest_files="du -h -x -s -- * | sort -r -h | head -20"
|
||||||
|
sort_filesizes() {
|
||||||
|
sudo du -h --max-depth=1 "${1}" | sort --human-numeric-sort
|
||||||
|
}
|
||||||
|
|
||||||
#User Env Vars
|
#User Env Vars
|
||||||
export DEBEMAIL="support@pogmom.me"
|
export DEBEMAIL="support@pogmom.me"
|
||||||
|
|
Loading…
Add table
Reference in a new issue