File: del2del

package info (click to toggle)
eperl 2.2.14-21
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,304 kB
  • ctags: 738
  • sloc: ansic: 4,694; perl: 584; sh: 556; makefile: 353
file content (36 lines) | stat: -rwxr-xr-x 829 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
:
eval 'exec perl -S $0 ${1+"$@"}'
    if $running_under_some_shell;
##
##  del2del -- Change ePerl block delimiters
##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved. 
##

if ($#ARGV < 4) {
    print STDERR "$0: ERROR: Bad arguments\n";
    print STDERR "Usage: $0 oldBeginDel oldEndDel newBeginDel newEndDel files ...\n";
    print STDERR "Example: $0 '<?' '!>' '<%' '%>' *.phtml\n";
    exit 1
}

$obd = quotemeta(shift ARGV);
$oed = quotemeta(shift ARGV);
$nbd = shift ARGV;
$ned = shift ARGV;

foreach $file (@ARGV) {
    print STDERR "Converting $file...";
    system("cp $file $file.old");
    open(IN, "<$file.old");
    open(OUT, ">$file");
    while (<IN>) {
        s|$obd|$nbd|go;
        s|$oed|$ned|go;
        print OUT $_;
    }
    close(OUT);
    close(IN);
    print STDERR "Done.\n";
}

##EOF##