#!/bin/bash
# $Id: w_i_p 728 2009-09-04 11:27:47Z bellier $
#--------------------------------------------------#
#--- What is host prefix ? - w_i_p - 21/06/2009 ---#
#--------------------------------------------------#
h_n=${1}
case ${h_n} in
 ( sx8mercure | sx9mercure )  DSYS="sx8mercure";;
 ( * )                        DSYS=${h_n};;
esac
#-
echo "$DSYS";
unset h_n;
#-
exit 0;
