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

10 lines
177 B
Text
Raw Normal View History

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