#!/usr/bin/perl # # untabify - convert tabs to spaces # # $Id: untabify 499 2003-06-11 00:48:41Z r33d $ use Text::Tabs; $tabstop = 8; while (<>) { print expand($_) }