Initial import
[ratbox-ambernet.git] / tools / untabify
blob746ce02b2ae71e9f787436b28f4cc74d2459b1d6
1 #!/usr/bin/perl
3 # untabify - convert tabs to spaces
5 # $Id: untabify 18613 2005-03-18 16:44:50Z $
6 use Text::Tabs;
7 $tabstop = 8;
8 while (<>) { print expand($_) }