X-Git-Url: http://git.grml.org/?a=blobdiff_plain;ds=sidebyside;f=etc%2Fskel%2F.zshrc;h=17bae725013c7178d5cd54d5b9b723a85d3c9b6d;hb=73a6cb726324d0be16df7a2b070d9a4bb3127ef1;hp=15d28622a8dd1299f6c795e345a2e6dd0bc66b89;hpb=713060b11b1edfd75fe7d975c3d17f8a02ee4767;p=grml-etc-core.git diff --git a/etc/skel/.zshrc b/etc/skel/.zshrc index 15d2862..17bae72 100644 --- a/etc/skel/.zshrc +++ b/etc/skel/.zshrc @@ -219,6 +219,32 @@ 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 +#} + ## log out? set timeout in seconds... ## ...and do not log out in some specific terminals: #if [[ "${TERM}" == ([Exa]term*|rxvt|dtterm|screen*) ]] ; then