X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=etc%2Fskel%2F.zshrc;h=3b861b8848f87d8d4c57a16bb3b1c5516ba48fab;hb=0cfd90b1fb4a888c3448b43f79417799fd117fee;hp=15d28622a8dd1299f6c795e345a2e6dd0bc66b89;hpb=9f620447815eceef8a316044536d527f2495260e;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