#!/bin/sh # align CHAR - align tabular data at CHAR # useful in vi: !align = CHAR=$1; shift exec column -t -s "$CHAR" -o "$CHAR" "$@"