X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cmd%2Fblank.pl;fp=cmd%2Fblank.pl;h=7107f2dd34c8dfec95c8389e608e3b7f87eca0ee;hb=1cc51a6696899a05d1b9ca40dab497cfdc39294b;hp=0000000000000000000000000000000000000000;hpb=a79ed63d7b2c53c1f360512afa2a68ba311b9554;p=spider.git diff --git a/cmd/blank.pl b/cmd/blank.pl new file mode 100644 index 00000000..7107f2dd --- /dev/null +++ b/cmd/blank.pl @@ -0,0 +1,14 @@ +# +# Print n blank lines +# +# Copyright (c) 1998 Dirk Koopman G1TLH +# +# $Id$ +# + +my ($self, $line) = @_; +my ($lines) = $line =~ /^\s*(\d+)/; +$lines ||= 1; +my @out; +push @out, ' ' for (1..$lines); +return (1, @out);