This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/tools/untabify
2002-08-13 14:45:13 +00:00

9 lines
177 B
Perl
Executable file

#!/usr/bin/perl
#
# untabify - convert tabs to spaces
#
# $Id: untabify,v 1.2 2002/08/13 14:45:13 fishwaldo Exp $
use Text::Tabs;
$tabstop = 8;
while (<>) { print expand($_) }