blob: 750f433dac50856a7758f864895713ff41aa7942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
[ $# -lt 1 ] && echo "missing hostname" && exit 1
if [ $# -eq 2 ]; then
host=$2
user=$1
else
host=$1
user="$1\Administrator"
fi
/usr/bin/rdesktop -0 -g 1280x1024 -u $user $host
|