Merge branch 'master' of ssh://apples.lambdacomplex.org/git/bus
[bus.git] / origin-src / indent-route.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
 
use strict;
 
my $first = 1;
while (<STDIN>) {
    if ($first) {
        $first = 0;
        print "  - $_";
    } else {
        print "    $_";
    }
}