blob: 939496bf88ca019e36e323880be8daa76958af81 (
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
echo rdesktop -0 -g 1280x1024 -u $user $host
|