]> jfr.im git - irc/rqf/shadowircd.git/blob - tools/untabify
Disallow mIRC italics in channel names when disable_fake_channels
[irc/rqf/shadowircd.git] / tools / untabify
1 #!/usr/bin/perl
2 #
3 # untabify - convert tabs to spaces
4 #
5 # $Id: untabify 6 2005-09-10 01:02:21Z nenolod $
6 use Text::Tabs;
7 $tabstop = 8;
8 while (<>) { print expand($_) }
9