X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fskel%2F.zshrc;h=8e1b02505110aff152f35df419388be07d3ea620;hb=0c46c6b42a3f262eef306f7a3694574f50d6215b;hp=df9f4d9f32c58ffbc1f5d3bba59747c0f930f113;hpb=c1d89209822ed136e486b6c3c253f247e4d65ab2;p=grml-etc-core.git diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index df9f4d9..8e1b025 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -228,6 +228,41 @@ fi # fi #} +## Download a file and display it locally +#uopen() { +# emulate -L zsh +# if ! [[ -n "$1" ]] ; then +# print "Usage: uopen \$URL/\$file">&2 +# return 1 +# else +# FILE=$1 +# MIME=$(curl --head $FILE | \ +# grep Content-Type | \ +# cut -d ' ' -f 2 | \ +# cut -d\; -f 1) +# MIME=${MIME%$'\r'} +# curl $FILE | see ${MIME}:- +# fi +#} + +## Memory overview +#memusage() { +# ps aux | awk '{if (NR > 1) print $5; +# if (NR > 2) print "+"} +# END { print "p" }' | dc +#} + +## print hex value of a number +#hex() { +# emulate -L zsh +# if [[ -n "$1" ]]; then +# printf "%x\n" $1 +# else +# print 'Usage: hex ' +# return 1 +# fi +#} + ## log out? set timeout in seconds... ## ...and do not log out in some specific terminals: #if [[ "${TERM}" == ([Exa]term*|rxvt|dtterm|screen*) ]] ; then