#!/bin/sh
#
# script to remove final space from argument
#  sends output to stdout
# note that this could be generalized to remove last char, 
# sed 's/[.]$//'

echo $1 | sed 's/ $//'
