aboutsummaryrefslogtreecommitdiffstats
path: root/tools/untabify
blob: 94880e01487054b5f570fd722c309d4a29134545 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/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($_) }