mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-06-14 08:41:43 +00:00
Moved hub into the git plugin.
This commit is contained in:
13
functions/duh
Normal file
13
functions/duh
Normal file
@ -0,0 +1,13 @@
|
||||
# Displays human readable disk usage statistics.
|
||||
function duh() {
|
||||
(( $# == 0 )) && set -- *
|
||||
if [[ "$OSTYPE" == linux* ]]; then
|
||||
du -khsc "$@" | sort -h -r
|
||||
else
|
||||
du -kcs "$@" | awk '{ printf "%9.1fM %s\n", $1 / 1024, $2 } ' | sort -n -r
|
||||
fi
|
||||
}
|
||||
compdef _du duh
|
||||
|
||||
duh "$@"
|
||||
|
7
functions/reload
Normal file
7
functions/reload
Normal file
@ -0,0 +1,7 @@
|
||||
# Reloads ~/.zshrc.
|
||||
local zshrc="$HOME/.zshrc"
|
||||
if [[ -n "$1" ]]; then
|
||||
zshrc="$1"
|
||||
fi
|
||||
source "$zshrc"
|
||||
|
Reference in New Issue
Block a user