X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=inline;f=etc%2Fskel%2F.zshrc;h=3b861b8848f87d8d4c57a16bb3b1c5516ba48fab;hb=48186d3a9d4139bfcd9bf743cb56cb77f287f464;hp=15d28622a8dd1299f6c795e345a2e6dd0bc66b89;hpb=713060b11b1edfd75fe7d975c3d17f8a02ee4767;p=grml-etc-core.git diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 15d2862..3b861b8 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -219,6 +219,39 @@ fi # fi #} +## Find out which libs define a symbol +#lcheck() { +# if [[ -n "$1" ]] ; then +# nm -go /usr/lib/lib*.a 2>/dev/null | grep ":[[:xdigit:]]\{8\} . .*$1" +# else +# echo "Usage: lcheck " >&2 +# 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 +#} + ## log out? set timeout in seconds... ## ...and do not log out in some specific terminals: #if [[ "${TERM}" == ([Exa]term*|rxvt|dtterm|screen*) ]] ; then