#!/bin/sh ## read words from stdin, ## write to stdout in a column, ## and transform mail headers ## $1 = column size col=${1:-60} [ $# -gt 0 ] && shift set -- -e -w"$col" "$@" . ~/sh/columnize.sh