]> jfr.im git - irc/rqf/shadowircd.git/blame - tools/untabify
Disallow mIRC italics in channel names when disable_fake_channels
[irc/rqf/shadowircd.git] / tools / untabify
CommitLineData
212380e3 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