#!/usr/bin/perl
#
# untabify - convert tabs to spaces
#
# $Id: untabify 18613 2005-03-18 16:44:50Z  $
use Text::Tabs;
$tabstop = 8;
while (<>) { print expand($_) }

