#!/bin/sh

PATH=$PATH:/usr/ebin
export PATH

# make label pages for small labels 2.75 (33 spaces) x 1 (6 lines) inch

label -h 6 -l 3 -w 33 -i 2 $* |
	ff -b -i 1 |                         # indent the lines one space
	sed "s/ *$//"                        # remove trailing spaces

# you could use 
#	sed "s/^/ /" instead of the faster ff call
