#!/bin/sh
while [ -n "$1" ]; do
{ expand -4 $1 > /tmp/$$; cp /tmp/$$ $1; rm /tmp/$$; shift; }
done

