wok view dropbear/stuff/sshx @ rev 10929

Up: tazpkg to 4.7.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Aug 18 22:21:30 2011 +0000 (2011-08-18)
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