#!/bin/bash
#
# Simple Echo server for inetd.
# see http://www.solanara.net/solanara/smf#head_smf_inetd_echo

read r
echo $r
exit 0
