0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-15 16:38:20 +02:00
construct/tools/untabify
nenolod 212380e3f4 [svn] - the new plan:
+ branches/release-2.1 -> 2.2 base
  + 3.0 -> branches/cxxconversion
  + backport some immediate 3.0 functionality for 2.2
  + other stuff
2007-01-24 22:40:21 -08:00

10 lines
168 B
Perl
Executable file

#!/usr/bin/perl
#
# untabify - convert tabs to spaces
#
# $Id: untabify 6 2005-09-10 01:02:21Z nenolod $
use Text::Tabs;
$tabstop = 8;
while (<>) { print expand($_) }