#!/bin/sh
DIALOG=${DIALOG=dialog}
tempfile=`mktemp 2>/dev/null` || tempfile=/tmp/test$$
trap "rm -f $tempfile" 0 1 2 5 15
$DIALOG --clear --title "Выбор терминала для работы" \
--menu "Выберите терминал:" 40 51 40 \
"This" "Остаться дома" \
"Chaos" "billing.wedwedq.ru" \
"Athena" "billing.yefwerfe.ru" \
"Ares" "billing.wefdwe.tv" \
"---------" "------"\
"Eros" "Сервер доступа Шексна,Хохлово(Ш)" \
"Helios" "Сервер доступа Чагода (Ш)" \
"Nike" "Сервер доступа Кадуй (Ш)" \
"Artemis" "Сервер доступа Лоста (Ш)" \
"Poseidon" "Сервер доступа Вытегра (Ш)" 2> $tempfile
retval=$?
choice=`cat $tempfile`
case $retval in
0)
if [ $choice = "This" ]; then
clear
exit
fi
if [ $choice = "Ares" ]; then
ssh billing.qwefqwe.tv -l логин
fi
if [ $choice = "Helios" ]; then
ssh 121.237.158.1 -l логин
fi
if [ $choice = "Nike" ]; then
ssh 127.27.138.1 -l логин
fi
if [ $choice = "Artemis" ]; then
ssh 122.144.337.120 -l логин
fi;;
1)
echo "Отказ от ввода.";;
255)
echo "Нажата клавиша ESC.";;