X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=blobdiff_plain;f=tools%2Funtabify;fp=tools%2Funtabify;h=048603e8b0a9d768cf6f5b16f54dfa46d8bd71ca;hp=0000000000000000000000000000000000000000;hb=0400a5a6479398d82526785c18c0df8bc8b92dce;hpb=d17e10da972ce5776c60b4c317267c6abe0e1ead diff --git a/tools/untabify b/tools/untabify new file mode 100644 index 0000000..048603e --- /dev/null +++ b/tools/untabify @@ -0,0 +1,10 @@ +#!/usr/bin/perl +# +# untabify - convert tabs to spaces +# +# $Id: untabify,v 1.2 2002-03-07 22:52:57 ghostwolf Exp $ + +use Text::Tabs; +$tabstop = 8; +while (<>) { print expand($_) } +