/[couchdb]/scripts/deploy/strip.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /scripts/deploy/strip.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22 - (hide annotations)
Tue Sep 30 18:25:36 2008 UTC (15 years, 7 months ago) by dpavlin
File size: 213 byte(s)
helper to strip leading whitespace
1 dpavlin 22 use strict;
2     use warnings;
3    
4     sub strip {
5     my $txt = shift;
6     $txt =~ s/^\s+$//gm;
7     if ( $txt =~ m/(\n\s+)/ ) {
8     $txt =~ s/$1/\n/gs;
9     }
10     $txt =~ s/^\s+//gs;
11     $txt =~ s/\s+$//gs;
12     warn "$txt\n\n";
13     return $txt;
14     }
15    
16     1;

  ViewVC Help
Powered by ViewVC 1.1.26