program_path='/home/hipo/tsh-0.52/tsh';
if [ "$1" == "" ]; then
printf "Need IP as arg example: $0 localhost etc. ...\n";
elif [ -n "$2" ]; then
$program_path "$1" get "$2" "$2";
else
$program_path "$1" run "exec /bin/bash --login"
fi
