#!/bin/sh
#
#  __ ___ ___  Copyright (C) 1988-1991 IXI Limited.
#  \ /  //  / 
#   /  //  /   IXI Limited, 62-74 Burleigh Street,
#  /__//__/_\  Cambridge, CB1 1OJ, United Kingdom
#
#  Program     : X.deskware
#  Module      : Script (xdtwait)
#  Description : Wait for input 
#

#ifndef lint
# sccs_id_xdh [] = "@(#) xdtwait 6.1";
#endif

################################################################
# Determine how to suppress newline in echo command
################################################################
ret=`echo "\c"`
if [ "x$ret" = x ]
then
    n=""; c="\c"
else
    n="-n"; c=""
fi

################################################################
#  Prompt user for input.
################################################################
echo $n "Press RETURN to continue: $c"
read ret
