wok view dropbear/stuff/sshx @ rev 11244

Up: elfkickers (3.0)
author Alexander Medvedev <devl547@gmail.com>
date Mon Nov 07 08:32:39 2011 +0300 (2011-11-07)
parents 409cb72cb3e0
children 0078fa9a46a4
line source
1 #!/bin/sh
3 xdbclient()
4 {
5 read host type data
6 svr=$(echo $DISPLAY | sed 's/.*:\([0-9]*\).*/\1/')
7 n=$((10+$svr)); dpy=localhost:$n
8 dbclient -R $((6000+$n)):localhost:$((6000+$svr)) "$@" \
9 "xauth add $dpy $type $data; export DISPLAY=$dpy; $TERM"
10 }
12 case "$DISPLAY" in
13 '') dbclient "$@" ;;
14 *) xauth list $DISPLAY | xdbclient "$@" ;;
15 esac