blob: c8989e2aa6c66af67b460da947da979be889edc0 (
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="Administrator"
fi
/usr/bin/rdesktop -0 -g 1280x1024 -u $user $host
|