#!/bin/sh
# Waits for client connection and echoes stdin to client and
# clients output to stdout.
port=1111
nc -l -p "$port"
