Skip to content

Instantly share code, notes, and snippets.

@ryo-utsunomiya
Created September 19, 2012 12:37
Show Gist options
  • Save ryo-utsunomiya/3749413 to your computer and use it in GitHub Desktop.
Save ryo-utsunomiya/3749413 to your computer and use it in GitHub Desktop.
trim space, tab, and line break
#!/usr/bin/perl
use strict;
use warnings;
open(FILE, 'index.php') or die "$!";
while (my $line = <FILE>) {
unless ($line =~ /[^(\s|\t|\n)]/g) {
$line =~ s/(\s|\t|\n)//g;
}
print $line;
}
close(FILE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment