]> jfr.im git - solanum.git/blame - tools/untabify
Change default --with-nicklen to 31, like atheme-services.
[solanum.git] / tools / untabify
CommitLineData
212380e3
AC
1#!/usr/bin/perl
2#
3# untabify - convert tabs to spaces
4#
5# $Id: untabify 6 2005-09-10 01:02:21Z nenolod $
6use Text::Tabs;
7$tabstop = 8;
8while (<>) { print expand($_) }
9