#!/bin/sh
#
# rotate columns right one - Corey Satten

exec sed 's/^\(.*\)\([ 	][ 	]*\)\(.*\)/\3\2\1/'
