#!/bin/sh
# wr - write specified text to user's terminal
#      wr username "text to write..."

USER=$1
shift
echo "$@" | write $USER
